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

17 lines
221 B
Nix
Raw Normal View History

2024-12-15 18:29:58 +08:00
{
suites,
2024-12-15 22:34:29 +08:00
profiles,
2024-12-15 18:29:58 +08:00
mylib,
...
}:
{
2024-12-15 22:34:29 +08:00
imports =
suites.server
++ (with profiles; [
services.knot.secondary
])
++ (mylib.path.scanPaths ./. "default.nix");
2024-12-15 18:29:58 +08:00
system.stateVersion = "24.11";
}