refactor(system): simplify Nix config file

This commit is contained in:
Andre 2024-06-22 13:39:54 -04:00
parent 7799a1630b
commit ef27c8cd93

View file

@ -19,9 +19,9 @@ in
default = "30d"; default = "30d";
}; };
}; };
config = lib.mkMerge [ config = {
(lib.mkIf cfg.allowUnfree { nixpkgs.config.allowUnfree = true; }) nixpkgs.config.allowUnfree = cfg.allowUnfree;
({
nix = { nix = {
# Enable Flakes # Enable Flakes
settings.experimental-features = [ settings.experimental-features = [
@ -46,6 +46,5 @@ in
# Support for standard, dynamically-linked executables # Support for standard, dynamically-linked executables
programs.nix-ld.enable = true; programs.nix-ld.enable = true;
}) };
];
} }