nix/base/nix/settings.nix
2025-07-21 00:55:23 +10:00

26 lines
449 B
Nix

{ inputs, ... }:
{
imports = [
inputs.lix-module.nixosModules.default
];
nix = {
settings = {
experimental-features = [
"nix-command"
"flakes"
"pipe-operator"
];
substitute = true;
};
extraOptions = ''
keep-outputs = true
keep-derivations = true
'';
optimise.automatic = true;
};
system.nixos.tags = [ "fatcock-xxl" ];
home-manager.useGlobalPkgs = true;
}