diff options
| author | triethyl <triethylammonium@pm.me> | 2026-01-19 18:46:58 -0500 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2026-01-19 18:46:58 -0500 |
| commit | d318cb00bbf455fc398194e03ff7dc554cb1f7f8 (patch) | |
| tree | c8bb3c01e7b9a02ded83a18300dfb7610c1e6304 | |
| parent | 4fd2cc2ccd030efa2717ef91ad6b2e9b0b50a507 (diff) | |
nzxt-desktop: set ralt as the compose key
| -rw-r--r-- | nixos/systems/nzxt-desktop/system.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nixos/systems/nzxt-desktop/system.nix b/nixos/systems/nzxt-desktop/system.nix index 3a6932c..bec45c8 100644 --- a/nixos/systems/nzxt-desktop/system.nix +++ b/nixos/systems/nzxt-desktop/system.nix @@ -24,6 +24,8 @@ ]; }; + networking.firewall.enable = false; + features = { gui = { apps = { @@ -63,4 +65,14 @@ }; }; }; + services.xserver.xkb = { + layout = "us"; + options = "grp:win_space_toggle,compose:ralt"; + }; + services.keyd = { + enable = true; + keyboards.default.settings.main = { + capslock = "leftshift"; + }; + }; } |
