Files
dotfiles/system-modules/cache.nix
Lennart J. Kurzweg (Nx2) d6d4a1f3b5 refactor
2025-06-18 15:31:01 +02:00

12 lines
226 B
Nix

{ ... }: {
nix.settings = {
substitute = true;
substituters = [
"https://yazi.cachix.org"
];
trusted-public-keys = [
"yazi.cachix.org-1:Dcdz63NZKfvUCbDGngQDAZq6kOroIrFoyO064uvLh8k="
];
};
}