fix: rename nix.systemFeatures -> nix.settings.system-features

This fixes #94
This commit is contained in:
Charlotte 🦝 Delenk 2022-07-10 14:45:25 +01:00
parent a976bdc02e
commit a1fed98309
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122
4 changed files with 9 additions and 5 deletions

View file

@ -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"

View file

@ -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"

View file

@ -1,5 +1,9 @@
{pkgs, emanote, ...}: {
imports = [ emanote.homeManagerModule ];
{
pkgs,
emanote,
...
}: {
imports = [emanote.homeManagerModule];
home.packages = [pkgs.zk];
services.emanote = {
enable = true;

View file

@ -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"