This commit is contained in:
2025-08-28 14:01:55 +03:00
parent 0fb61984b6
commit 563da675c5
+8 -3
View File
@@ -6,19 +6,24 @@
system.nixos.label = "default";
nix = {
channel = {
enable = false;
};
settings = {
substituters = [
"https://nixos-cache-proxy.cofob.dev" # https://gist.github.com/cofob/9b1fd205e6d961a45c225ae9f0af1394
"https://cache.nixos.org"
"https://nix-community.cachix.org"
"https://cache.nixos.org/"
"https://nixos-cache-proxy.cofob.dev" # https://gist.github.com/cofob/9b1fd205e6d961a45c225ae9f0af1394
"https://nixos.snix.store" # https://nixos.snix.store/
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
auto-optimise-store = true;
experimental-features = [
"nix-command"
"flakes"
"nix-command"
"repl-flake"
];
};
};