System Gen216 @ 2025-11-26-15:46:35 by jonas@comfy-station

This commit is contained in:
Jonas Röger 2025-11-26 15:46:35 +01:00
parent 0237bd1242
commit 147c255448
3 changed files with 13 additions and 3 deletions

View File

@ -111,7 +111,7 @@
nix = { nix = {
settings = { settings = {
substituters = [ substituters = [
"https://aseipp-nix-cache.global.ssl.fastly.net" "https://aseipp-nix-cache.freetls.fastly.net"
"https://nix-community.cachix.org" "https://nix-community.cachix.org"
"https://cache.nixos.org/" "https://cache.nixos.org/"
]; ];

View File

@ -29,9 +29,14 @@
key = "adminPassword"; key = "adminPassword";
}; };
# Configure nix and garbage collection # gc settings and binary caches
nix = { nix = {
settings = { settings = {
substituters = [
"https://aseipp-nix-cache.freetls.fastly.net"
"https://nix-community.cachix.org"
"https://cache.nixos.org/"
];
experimental-features = ["nix-command" "flakes"]; experimental-features = ["nix-command" "flakes"];
auto-optimise-store = true; auto-optimise-store = true;
}; };

View File

@ -202,9 +202,14 @@
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "24.11"; # Did you read the comment? system.stateVersion = "24.11"; # Did you read the comment?
# gc settings # gc settings and binary caches
nix = { nix = {
settings = { settings = {
substituters = [
"https://aseipp-nix-cache.freetls.fastly.net"
"https://nix-community.cachix.org"
"https://cache.nixos.org/"
];
experimental-features = ["nix-command" "flakes"]; experimental-features = ["nix-command" "flakes"];
auto-optimise-store = true; auto-optimise-store = true;
}; };