infra/config/nix.nix

16 lines
285 B
Nix

{
nix = {
gc.automatic = true;
settings = (import ../flake.nix).nixConfig // {
auto-optimise-store = true;
experimental-features = [
"nix-command"
"flakes"
];
trusted-users = [
"@wheel"
"winston"
];
};
};
}