nixos-config/nixos/hosts/reisen-fra0/default.nix

17 lines
221 B
Nix

{
suites,
profiles,
mylib,
...
}:
{
imports =
suites.server
++ (with profiles; [
services.knot.secondary
])
++ (mylib.path.scanPaths ./. "default.nix");
system.stateVersion = "24.11";
}