Commonize attic

This commit is contained in:
2026-02-26 00:55:05 +01:00
parent d1e6f5d7af
commit 5bcaf7217a
3 changed files with 1 additions and 1 deletions

21
common/modules/attic.nix Normal file
View File

@@ -0,0 +1,21 @@
{
...
}:
{
nix.settings = {
substituters = [
"https://attic.awroo.fun/my-config"
"https://cache.nixos.org"
];
trusted-public-keys = [
"my-config:51aC90S8+3+gS/UzwdnL7a7lu1NnY896SZp5njMwFDk="
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
];
trusted-users = [
"root"
"@wheel"
];
};
}