infrastructure/systems/kasen/default.nix

16 lines
No EOL
236 B
Nix

_: {
imports = [
];
deploy.hostname = "10.1.1.139";
arch = "aarch64";
type = "NixOS";
modules = [
./nixos.nix
];
exports = {
services = {
nginx.enable = true;
sshd.enable = true;
};
};
}