summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nixos/systems/nzxt-desktop/system.nix12
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";
+ };
+ };
}