mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-25 03:23:54 +01:00
internal keyboad option to hyprland config
This commit is contained in:
parent
b77d9b37ae
commit
50ef293e14
|
@ -34,6 +34,11 @@ input {
|
||||||
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
device {
|
||||||
|
name = at-translated-set-2-keyboard
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
|
||||||
general {
|
general {
|
||||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||||
|
|
||||||
|
@ -112,7 +117,8 @@ $mainMod = SUPER
|
||||||
bind = $mainMod SHIFT, return, exec, wezterm
|
bind = $mainMod SHIFT, return, exec, wezterm
|
||||||
bind = $mainMod SHIFT, Q, killactive,
|
bind = $mainMod SHIFT, Q, killactive,
|
||||||
bind = $mainMod SHIFT, X, exit,
|
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 SHIFT, SPACE, togglefloating,
|
||||||
bind = $mainMod, P, exec, tofi-drun --drun-launch=true
|
bind = $mainMod, P, exec, tofi-drun --drun-launch=true
|
||||||
bind = $mainMod SHIFT, P, exec, tofi-run --drun-launch=true
|
bind = $mainMod SHIFT, P, exec, tofi-run --drun-launch=true
|
||||||
|
|
|
@ -12,16 +12,12 @@
|
||||||
./modules/wm.nix
|
./modules/wm.nix
|
||||||
./modules/gtk.nix
|
./modules/gtk.nix
|
||||||
./modules/home-pkgs.nix
|
./modules/home-pkgs.nix
|
||||||
|
./modules/git.nix
|
||||||
#./modules/ssh.nix
|
#./modules/ssh.nix
|
||||||
];
|
];
|
||||||
home.username = "xqtc";
|
home.username = "xqtc";
|
||||||
home.homeDirectory = "/home/xqtc";
|
home.homeDirectory = "/home/xqtc";
|
||||||
|
|
||||||
programs.git = {
|
|
||||||
enable = true;
|
|
||||||
userName = "xqtc161";
|
|
||||||
userEmail = "xqtc@tutanota.com";
|
|
||||||
};
|
|
||||||
programs.wezterm = {
|
programs.wezterm = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraConfig = builtins.readFile ./config-files/wezterm.lua;
|
extraConfig = builtins.readFile ./config-files/wezterm.lua;
|
||||||
|
@ -33,65 +29,6 @@
|
||||||
|
|
||||||
services.easyeffects = {enable = true;};
|
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";
|
home.stateVersion = "23.11";
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
12
home/modules/git.nix
Normal file
12
home/modules/git.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
userName = "xqtc161";
|
||||||
|
userEmail = "xqtc@tutanota.com";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue