nix-conf/system/modules/nixsettings.nix
2025-04-09 13:24:02 +08:00

15 lines
285 B
Nix

{ inputs, ... }:
{
documentation.nixos.enable = false;
nix = {
settings = {
warn-dirty = false;
experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
};
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
};
}