diff --git a/hosts/Infini-DESKTOP/default.nix b/hosts/Infini-DESKTOP/default.nix index 3545768..1c9fa7e 100644 --- a/hosts/Infini-DESKTOP/default.nix +++ b/hosts/Infini-DESKTOP/default.nix @@ -17,6 +17,10 @@ ]) btrfs + + (with services; [ + foldingathome + ]) ]) ./hardware-configuration.nix diff --git a/profiles/services/foldingathome.nix b/profiles/services/foldingathome.nix new file mode 100644 index 0000000..f74ae78 --- /dev/null +++ b/profiles/services/foldingathome.nix @@ -0,0 +1,7 @@ +{ ... }: { + services.foldingathome = { + enable = true; + user = "infinidoge"; + daemonNiceLevel = 10; + }; +}