mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
16 lines
No EOL
236 B
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;
|
|
};
|
|
};
|
|
} |