Files

19 lines
365 B
Nix
Raw Permalink Normal View History

2026-03-23 21:24:20 +01:00
{...}: {
2026-02-17 20:02:25 +01:00
nix.settings = {
substituters = [
"https://attic.awroo.fun/my-config"
"https://cache.nixos.org"
];
trusted-public-keys = [
"my-config:hK+qaX2TdSrf/sp8LjKq9VF9XU0qGksoQCdgVXfgWoQ="
2026-02-17 20:02:25 +01:00
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
];
2026-02-17 23:32:48 +01:00
trusted-users = [
"root"
"@wheel"
];
2026-02-17 20:02:25 +01:00
};
2026-02-17 23:32:48 +01:00
}