infra/config/nix.nix

15 lines
285 B
Nix
Raw Normal View History

2023-05-06 06:49:46 +02:00
{
2023-07-03 03:33:35 +02:00
nix = {
gc.automatic = true;
2024-09-18 16:10:20 +02:00
settings = (import ../flake.nix).nixConfig // {
auto-optimise-store = true;
experimental-features = [
"nix-command"
"flakes"
];
2024-09-18 23:32:50 +02:00
allowed-users = [ "root" ];
trusted-users = [ "root" ];
2024-09-18 16:10:20 +02:00
};
2023-07-03 03:33:35 +02:00
};
2023-05-06 06:49:46 +02:00
}