internal keyboad option to hyprland config

This commit is contained in:
xqtc161 2024-03-09 14:27:32 +01:00
parent b77d9b37ae
commit 50ef293e14
3 changed files with 20 additions and 65 deletions

View file

@ -34,6 +34,11 @@ input {
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
}
device {
name = at-translated-set-2-keyboard
enabled = false
}
general {
# See https://wiki.hyprland.org/Configuring/Variables/ for more
@ -112,7 +117,8 @@ $mainMod = SUPER
bind = $mainMod SHIFT, return, exec, wezterm
bind = $mainMod SHIFT, Q, killactive,
bind = $mainMod SHIFT, X, exit,
bind = $mainMod, L, exec, swaylock --indicator --clock --effect-blur 7x5 -e -f -i ~/dotfiles_new/walls/walls/wallpapersdencom_house-in-purple-flower-hyacinth-field_2048x1365.jpg
bind = $mainMod, L, exec, swaylock --indicator --clock --effect-blur 7x5 -e -f -i ~/dotfiles_new/walls/walls/Bangqiao Yan - Letter.jpg
bind = $mainMod SHIFT, SPACE, togglefloating,
bind = $mainMod, P, exec, tofi-drun --drun-launch=true
bind = $mainMod SHIFT, P, exec, tofi-run --drun-launch=true

View file

@ -12,16 +12,12 @@
./modules/wm.nix
./modules/gtk.nix
./modules/home-pkgs.nix
./modules/git.nix
#./modules/ssh.nix
];
home.username = "xqtc";
home.homeDirectory = "/home/xqtc";
programs.git = {
enable = true;
userName = "xqtc161";
userEmail = "xqtc@tutanota.com";
};
programs.wezterm = {
enable = true;
extraConfig = builtins.readFile ./config-files/wezterm.lua;
@ -33,65 +29,6 @@
services.easyeffects = {enable = true;};
# home.packages = with pkgs; [
# neofetch
# uwufetch
# btop
# iftop
# ranger
#
# obsidian
#
# moodle-dl
#
# brightnessctl
# pavucontrol
#
# bitwarden
# bitwarden-cli
#
# sway-contrib.grimshot
#
# libnotify
#
# strace
# ltrace
#
# nodejs
#
# nerdfonts
# vivaldi
# vivaldi-ffmpeg-codecs
#
# signal-desktop
# vesktop
# discord
# telegram-desktop
# webex
# element-desktop
#
# qbittorrent
# nicotine-plus
#
# via
# qmk
# qmk-udev-rules
#
# neovide
#
# yubioath-flutter
#
# steam
# protonup-qt
#
# spotify
# sayonara
# mpv
# feishin
#
# nixos-icons
# swww
# ];
home.stateVersion = "23.11";
programs.home-manager.enable = true;

12
home/modules/git.nix Normal file
View file

@ -0,0 +1,12 @@
{
inputs,
config,
pkgs,
...
}: {
programs.git = {
enable = true;
userName = "xqtc161";
userEmail = "xqtc@tutanota.com";
};
}