cfg/common/nix.nix
2025-07-14 14:45:55 +02:00

17 lines
240 B
Nix

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