nixfleet/hosts/pbp/default.nix
2022-10-08 17:37:56 +02:00

20 lines
233 B
Nix

{
fleetModules,
pkgs,
lib,
...
}: {
imports =
[
./hardware-configuration.nix
]
++ fleetModules [
"common"
"ssh"
"ccr"
#"mara"
];
ccr.enable = true;
# mara.enable = true;
}