nixos-config/nixos/hosts/flandre-m5p/default.nix

18 lines
246 B
Nix
Raw Permalink Normal View History

2024-11-28 01:14:34 +08:00
{
suites,
2024-12-07 14:01:25 +08:00
profiles,
2024-11-28 01:14:34 +08:00
mylib,
...
}:
{
2024-12-07 14:01:25 +08:00
imports =
suites.server
2024-12-16 21:45:28 +08:00
++ (with profiles; [
services.knot.ddns
virtualization.libvirtd
])
2024-12-07 14:01:25 +08:00
++ (mylib.path.scanPaths ./. "default.nix");
2024-11-28 01:14:34 +08:00
2024-12-24 22:14:33 +08:00
system.stateVersion = "24.11";
2024-11-28 01:14:34 +08:00
}