mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
17 lines
248 B
Nix
17 lines
248 B
Nix
_: {
|
|
imports = [
|
|
./proxmox.nix
|
|
];
|
|
arch = "x86_64";
|
|
type = "NixOS";
|
|
ci.allowFailure = true;
|
|
access.online.enable = false;
|
|
modules = [
|
|
./nixos.nix
|
|
];
|
|
exports = {
|
|
services = {
|
|
tailscale.enable = true;
|
|
};
|
|
};
|
|
}
|