servers/common/nix.nix

37 lines
700 B
Nix
Raw Normal View History

2026-02-24 00:00:35 -08:00
{ ... }:
{
2025-01-26 18:49:45 -06:00
nix = {
extraOptions = ''
experimental-features = nix-command flakes
'';
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
settings = {
experimental-features = [
"auto-allocate-uids"
"flakes"
"nix-command"
];
2026-02-24 00:00:35 -08:00
trusted-users = [
"root"
"@wheel"
];
2025-01-26 18:49:45 -06:00
2026-02-24 00:00:35 -08:00
substituters = [
"https://cache.nixos.org"
"https://cache.garnix.io"
];
trusted-public-keys = [
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
];
2025-01-26 18:49:45 -06:00
};
};
}