nixConfig/nixos/roles/nix.nix

26 lines
528 B
Nix
Raw Normal View History

2024-10-13 11:45:11 +00:00
{
nix.settings = {
trusted-public-keys = [
"nerflap2-1:pDZCg0oo9PxNQxwVSQSvycw7WXTl53PGvVeZWvxuqJc="
"gonne.mathebau.de-1:FsXFyFiBFE/JxC9MCkt/WuiXjx5dkRI9RXj0FxOQrV0="
];
experimental-features = [
"flakes"
"nix-command"
];
auto-optimise-store = true;
fallback = true;
builders-use-substitus = true;
};
gc = {
persistent = true;
dates = "weekly";
options = "-d";
randomizedDelaySec = "5h";
};
optimise = {
dates = [];
automatic = true;
};
}