mio-ops/profiles/nCovid-19.nix
2021-03-03 15:52:21 +10:00

15 lines
277 B
Nix

# NixOps configuration for the hosts utilising Folding@Home for nCovid-19
{ config, pkgs, lib, ... }:
{
# Set the system-wide environment
environment = {
systemPackages = with pkgs; [
foldingathome # Folding@home distributed computing client
];
};
}