infrastructure/systems/litterbox/default.nix
2024-06-01 11:25:08 -07:00

17 lines
248 B
Nix

_: {
imports = [
./proxmox.nix
];
arch = "x86_64";
type = "NixOS";
ci.allowFailure = true;
access.online.enable = false;
modules = [
./nixos.nix
];
exports = {
services = {
tailscale.enable = true;
};
};
}