feat: add cachix caches

This commit is contained in:
2026-03-05 21:56:19 +01:00
parent 514d33b570
commit 6720adbfcc
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ ... }:
{
nix.settings = {
substituters = [
"https://cache.nixos.org"
"https://nixvim-superredstone.cachix.org"
"https://spotiflac-cli.cachix.org"
];
trusted-public-keys = [
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"nixvim-superredstone.cachix.org-1:mEXHVxEv5dKka3FOxTMFDfdk/DJ0baydsahi+zZIcQE="
"spotiflac-cli.cachix.org-1:UgpE8P0TO8NuF03vF117r/vgTkjq13Z3JqGzaQdC7xE="
];
trusted-users = [
"root"
"@wheel"
];
};
}

View File

@@ -6,6 +6,7 @@
}: }:
{ {
imports = [ imports = [
./caches.nix
./hardware.nix ./hardware.nix
./keyboard.nix ./keyboard.nix
./security.nix ./security.nix