infra/config/nix.nix
winston e94b793bc7
All checks were successful
/ check (push) Successful in 17m58s
chore: security hardening
2024-09-18 23:32:50 +02:00

14 lines
285 B
Nix

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