New structure since I kept struggling with the home-manager implemnentation

This commit is contained in:
2026-03-18 15:30:52 +00:00
parent 1ea1a8fbbb
commit 3ca5f382ad
2 changed files with 6 additions and 4 deletions
+3 -2
View File
@@ -335,8 +335,9 @@ in
nix.settings = { nix.settings = {
experimental-features = [ "nix-command" "flakes" ]; experimental-features = [ "nix-command" "flakes" ];
download-buffer-size = 536870912; # 512 MB download-buffer-size = 536870912; # 512 MB
cores = 2; cores = 2;
max-jobs = 1; max-jobs = 1;
};
}; };
} }
#+END_SRC #+END_SRC
+3 -2
View File
@@ -13,7 +13,8 @@ in
nix.settings = { nix.settings = {
experimental-features = [ "nix-command" "flakes" ]; experimental-features = [ "nix-command" "flakes" ];
download-buffer-size = 536870912; # 512 MB download-buffer-size = 536870912; # 512 MB
cores = 2; cores = 2;
max-jobs = 1; max-jobs = 1;
};
}; };
} }