infrastructure/systems/reimu/default.nix

16 lines
215 B
Nix

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