hosts/Infini-DESKTOP: add Folding@Home service

This commit is contained in:
Infinidoge 2021-11-12 00:17:39 -05:00
parent b9f0cf3675
commit 9cc503e055
2 changed files with 11 additions and 0 deletions

View file

@ -17,6 +17,10 @@
])
btrfs
(with services; [
foldingathome
])
])
./hardware-configuration.nix

View file

@ -0,0 +1,7 @@
{ ... }: {
services.foldingathome = {
enable = true;
user = "infinidoge";
daemonNiceLevel = 10;
};
}