diff options
Diffstat (limited to 'common/home')
| -rw-r--r-- | common/home/default.nix | 3 | ||||
| -rw-r--r-- | common/home/hyprland/default.nix | 3 | ||||
| -rw-r--r-- | common/home/programs/neomutt/default.nix | 5 | ||||
| -rw-r--r-- | common/home/programs/waybar/default.nix | 7 | ||||
| -rw-r--r-- | common/home/programs/waybar/style.css | 5 |
5 files changed, 22 insertions, 1 deletions
diff --git a/common/home/default.nix b/common/home/default.nix index 928ac19..656581c 100644 --- a/common/home/default.nix +++ b/common/home/default.nix @@ -75,6 +75,9 @@ packages = [ pkgs.pv pkgs.bsnes-hd pkgs.zulu25 + pkgs.signal-export + pkgs.libsecret + pkgs.w3m ]; in { diff --git a/common/home/hyprland/default.nix b/common/home/hyprland/default.nix index 95ac423..8ddc0a4 100644 --- a/common/home/hyprland/default.nix +++ b/common/home/hyprland/default.nix @@ -141,7 +141,8 @@ }; input = { - kb_options = "caps:escape"; + kb_layout = "us,ch"; + kb_options = "caps:escape,grp:alt_space_toggle"; touchpad = { natural_scroll = true; diff --git a/common/home/programs/neomutt/default.nix b/common/home/programs/neomutt/default.nix index 1d25903..f6df8ce 100644 --- a/common/home/programs/neomutt/default.nix +++ b/common/home/programs/neomutt/default.nix @@ -2,7 +2,12 @@ { enable = true; + vimKeys = true; + extraConfig = '' + auto_view text/html + alternative_order text/plain text/html + color hdrdefault green black color quoted blue black color signature blue black diff --git a/common/home/programs/waybar/default.nix b/common/home/programs/waybar/default.nix index 6fc9c9c..75588b7 100644 --- a/common/home/programs/waybar/default.nix +++ b/common/home/programs/waybar/default.nix @@ -14,6 +14,7 @@ modules-right = [ "pulseaudio" "bluetooth" + "hyprland/language" "battery" "tray" ]; @@ -85,6 +86,12 @@ max = 100; orientation = "horizontal"; }; + + "hyprland/language" = { + format = "{}"; + format-en = "US"; + "format-de" = "CH"; + }; }; }; style = ./style.css; diff --git a/common/home/programs/waybar/style.css b/common/home/programs/waybar/style.css index 5910997..de8f3d4 100644 --- a/common/home/programs/waybar/style.css +++ b/common/home/programs/waybar/style.css @@ -7,6 +7,11 @@ window { color: #ebdbb2; } +#language { + font-size: 12px; + padding-right: 10px; +} + #pulseaudio { font-size: 12px; } |