cfg/mod/nix-configuration.nix
2025-05-18 13:27:15 +02:00

18 lines
241 B
Nix

{
lib,
inputs,
config,
...
}:
{
nix.settings = {
experimental-features = [
"nix-command"
"flakes"
];
trusted-users = [ "root" ];
auto-optimise-store = true;
};
nixpkgs.config.allowUnfree = false;
}