cfg/host/nix.nix
2025-07-02 22:40:07 +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;
}