Move nix settins to baremetal

This commit is contained in:
Sandro - 2023-05-19 23:05:28 +02:00
parent d4993b47b1
commit 169836c95f
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
5 changed files with 4 additions and 16 deletions

View File

@ -46,10 +46,6 @@
};
simd.arch = "ivybridge";
nix.settings.system-features = [
"kvm" "big-parallel"
"nixos-test" "benchmark"
];
sops = {
defaultSopsFile = ./secrets.yaml;

View File

@ -28,10 +28,6 @@
};
simd.arch = "ivybridge"; # E5-2690 v2
nix.settings.system-features = [
"kvm" "big-parallel"
"nixos-test" "benchmark"
];
sops = {
defaultSopsFile = ./secrets.yaml;

View File

@ -57,10 +57,6 @@
};
simd.arch = "westmere";
nix.settings.system-features = [
"kvm" "big-parallel"
"nixos-test" "benchmark"
];
sops = {
defaultSopsFile = ./secrets.yaml;

View File

@ -41,10 +41,6 @@
};
simd.arch = "westmere";
nix.settings.system-features = [
"kvm" "big-parallel"
"nixos-test" "benchmark"
];
sops = {
defaultSopsFile = ./secrets.yaml;

View File

@ -10,6 +10,10 @@
smartmontools # for smartctl
];
nix.settings.system-features = [
"kvm" "big-parallel" "nixos-test" "benchmark"
];
services.smartd.enable = true;
};
}