home-manager/common: Use new upstream nix.settings to configure Nix

This commit is contained in:
2022-04-17 16:01:07 +01:00
parent c02f50e5bc
commit 934e7afcb8
3 changed files with 17 additions and 22 deletions

View File

@@ -15,7 +15,6 @@
hostname = "h.nul.ie";
sshOpts = [ "-4" "-p" "8022" ];
};
nix.config.cores = "16";
};
home.packages = with pkgs; [
@@ -23,6 +22,8 @@
mame
];
nix.settings.cores = 16;
programs = {
ssh.matchBlocks = {
home = {

View File

@@ -9,9 +9,10 @@
{
my = {
deploy.enable = false;
nix.config.cores = "6";
};
nix.settings.cores = 6;
programs = {
ssh.enable = false;
};