infrastructure/systems/utsuho/default.nix
2024-04-15 11:23:20 -07:00

17 lines
246 B
Nix

_: {
imports = [
./proxmox.nix
];
arch = "x86_64";
type = "NixOS";
modules = [
./nixos.nix
];
exports = {
services = {
unifi.enable = true;
mosquitto.enable = true;
dnsmasq.enable = true;
};
};
}