infrastructure/systems/reimu/default.nix
2024-04-16 03:07:39 -07:00

17 lines
241 B
Nix

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