This commit is contained in:
2024-03-05 15:02:42 +01:00
parent 4a37c5afd7
commit 0fb5a5ee0b
5 changed files with 152 additions and 3 deletions

View File

@@ -43,7 +43,13 @@
defaultSession = "none+xmonad";
};
libinput.enable = true; # Enable touchpad.
windowManager.xmonad.enable = true;
windowManager.xmonad = {
enable = true;
flake = {
enable = true;
compiler = "ghc924";
};
};
xkb.layout = "de";
};
# Enable CUPS to print.
@@ -91,7 +97,10 @@
'';
};
nixpkgs.config.allowUnfree = true;
nixpkgs.config = {
allowUnfree = true;
permittedInsecurePackages = [ "electron-25.9.0" ];
};
# Enable zsh for setting it as shell for users.
programs.zsh.enable = true;