Files
nixos/common/modules/attic.nix

23 lines
370 B
Nix
Raw Normal View History

2026-02-17 23:32:48 +01:00
{
...
}:
2026-03-01 08:19:46 +01:00
2026-02-17 23:32:48 +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 = [
2026-02-17 23:32:48 +01:00
"my-config:51aC90S8+3+gS/UzwdnL7a7lu1NnY896SZp5njMwFDk="
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
}