infrastructure/systems/kasen/default.nix
arcnmx 06471a7b34 fix(ci): disable kasen builds
needs an aarch64-linux builder first!
2024-05-10 13:15:17 -07:00

18 lines
305 B
Nix

_: {
imports = [
];
deploy.hostname = "10.1.1.139";
# TODO: get an aarch64-linux builder on aya!
ci.enable = false;
arch = "aarch64";
type = "NixOS";
modules = [
./nixos.nix
];
exports = {
services = {
nginx.enable = true;
sshd.enable = true;
};
};
}