infrastructure/systems/litterbox/default.nix
2024-04-16 03:43:37 -07:00

17 lines
242 B
Nix

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