diff --git a/boxes/desktop/configuration.nix b/boxes/desktop/configuration.nix index 4d848d6..5cdf5de 100644 --- a/boxes/desktop/configuration.nix +++ b/boxes/desktop/configuration.nix @@ -8,6 +8,7 @@ # Include the results of the hardware scan. ./hardware-configuration.nix ../../common/systemModules/boot.nix + ../../common/systemModules/folding.nix ../../common/systemModules/kernel.nix ../../common/systemModules/audio.nix ../../common/systemModules/kde.nix diff --git a/common/systemModules/folding.nix b/common/systemModules/folding.nix new file mode 100644 index 0000000..c6c490f --- /dev/null +++ b/common/systemModules/folding.nix @@ -0,0 +1,7 @@ +{...}: { + services = { + foldingathome = { + enable = true; + }; + }; +}