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

15 lines
190 B
Nix

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