fixup! flake: add custom cache

This commit is contained in:
2025-12-01 23:06:45 +03:00
parent cab9cd0960
commit cdb1cbbe77
2 changed files with 7 additions and 1 deletions
+1
View File
@@ -21,6 +21,7 @@
})
];
nix.settings.cores = 3;
nixpkgs.config.allowBroken = true;
programs.gamemode.enable = true;
hardware.bluetooth.enable = true;
+6 -1
View File
@@ -11,10 +11,15 @@
};
config = {
nix.settings = {
keep-going = true;
extra-substituters = [ "https://nix.codrs.ru/main" ];
extra-trusted-public-keys = [ "main:kpwMe+9BsGJ/IUb7i3iadaV38y5/Yuqoct0mf7wI9ds=" ];
experimental-features = [ "nix-command" "flakes" ];
};
networking.hostName = hostname;
time.timeZone = lib.mkDefault "Europe/Moscow";
i18n.defaultLocale = lib.mkDefault "ru_RU.UTF-8";
nix.settings.experimental-features = [ "nix-command" "flakes" ];
system.stateVersion = "23.05";
};
}