diff --git a/hosts/temperance/configuration.nix b/hosts/temperance/configuration.nix index e4e920c..56a24a2 100644 --- a/hosts/temperance/configuration.nix +++ b/hosts/temperance/configuration.nix @@ -34,7 +34,13 @@ in { services = { fstrim.enable = lib.mkDefault true; + emacs = { + enable = true; + install = true; + package = pkgs.emacs-pgtk; + }; }; + virtualisation.docker.enable = true; meta = { mainUser.gitSigningKey = ""; diff --git a/modules/wms/wayland/hyprland/settings.nix b/modules/wms/wayland/hyprland/settings.nix index 2b832c8..f8eda7a 100644 --- a/modules/wms/wayland/hyprland/settings.nix +++ b/modules/wms/wayland/hyprland/settings.nix @@ -32,9 +32,9 @@ in { # Input settings input = { - kb_layout = "us,ru,de"; + kb_layout = "gb,ru,de"; kb_variant = ",phonetic_winkeys,"; - kb_options = "grp:rctrl_rshift_toggle, caps:escape, compose:102"; + kb_options = "grp:rctrl_rshift_toggle, caps:escape"; follow_mouse = true; diff --git a/packages/helix.nix b/packages/helix.nix index be236e1..003076e 100644 --- a/packages/helix.nix +++ b/packages/helix.nix @@ -30,7 +30,7 @@ inherit (lib) getExe; toml = formats.toml {}; helix-config = { - theme = "gruvbox"; + theme = "catppuccin_mocha"; editor = { cursorline = false; color-modes = true; @@ -42,9 +42,6 @@ display-messages = true; snippets = true; }; - file-picker = { - hidden = false; - }; line-number = "relative"; true-color = true; auto-format = true;