Files
nixos/laptop/modules/attic.nix

15 lines
350 B
Nix
Raw Normal View History

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:zMLOKdd9wxVtJDK2jgI2fW6Uehtdc4WLyU0bOjNpyxM="
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
];
trusted-users = [ "root" "@wheel" ];
};
}