more moving

This commit is contained in:
mjallen18
2024-02-29 14:17:34 -06:00
parent 347d30094b
commit ab42ace3b6
11 changed files with 128 additions and 82 deletions

View File

@@ -4,7 +4,16 @@ in {
imports = [ ../modules ../share ];
# Enable nix flakes and nix-command tools
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix = {
settings.experimental-features = [ "nix-command" "flakes" ];
# Garbage collect automatically every week
gc.automatic = true;
};
# Configure nixpkgs
# Enable non free
nixpkgs.config.allowUnfree = true;
# Hardware configs
hardware = {
@@ -54,4 +63,8 @@ in {
magicOrExtension = "\\x7fELF....AI\\x02";
};
};
programs = {
fish.enable = true;
};
}