fix: rename nix.systemFeatures -> nix.settings.system-features
This fixes #94
This commit is contained in:
parent
a976bdc02e
commit
a1fed98309
4 changed files with 9 additions and 5 deletions
|
@ -226,7 +226,7 @@
|
|||
"net.ipv4.conf.all.forwarding" = true;
|
||||
"net.ipv6.conf.all.forwarding" = true;
|
||||
};
|
||||
nix.systemFeatures = [
|
||||
nix.settings.system-features = [
|
||||
"kvm"
|
||||
"nixos-test"
|
||||
"big-parallel"
|
||||
|
|
|
@ -205,7 +205,7 @@
|
|||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKB8oH1XbuGrKn/SeguXz96sw4AjJQQvZyAdpptotzOr root@thinkrac"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAN/rVZJuwiO44LwOqimpH4zyGehYUMF2ZhYFXUCkupP hydra-queue-runner@nas"
|
||||
];
|
||||
nix.systemFeatures = [
|
||||
nix.settings.system-features = [
|
||||
"kvm"
|
||||
"nixos-test"
|
||||
"big-parallel"
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
{pkgs, emanote, ...}: {
|
||||
imports = [ emanote.homeManagerModule ];
|
||||
{
|
||||
pkgs,
|
||||
emanote,
|
||||
...
|
||||
}: {
|
||||
imports = [emanote.homeManagerModule];
|
||||
home.packages = [pkgs.zk];
|
||||
services.emanote = {
|
||||
enable = true;
|
||||
|
|
|
@ -167,7 +167,7 @@
|
|||
nix.settings.max-jobs = 4;
|
||||
nix.daemonCPUSchedPolicy = "idle";
|
||||
nix.daemonIOSchedClass = "idle";
|
||||
nix.systemFeatures = [
|
||||
nix.settings.system-features = [
|
||||
"kvm"
|
||||
"nixos-test"
|
||||
"big-parallel"
|
||||
|
|
Loading…
Reference in a new issue