fixed zsh package nonsense (i hate carapace)

This commit is contained in:
2026-07-04 16:11:10 +01:00
parent d28858fb45
commit a02f96f6ca
6 changed files with 270 additions and 39 deletions

View File

@@ -10,6 +10,8 @@
}: let
modules = with self.nixosModules; [
userConfiguration
hyprland
zsh
];
in {
imports =
@@ -17,7 +19,13 @@
/etc/nixos/hardware-configuration.nix
]
++ modules;
programs.zsh.enable = true;
nix.settings = {
cores = 6;
download-buffer-size = 524288000;
experimental-features = [
"nix-command"
"flakes"
];
};
};
}