mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
25 lines
472 B
Nix
25 lines
472 B
Nix
{...}: {
|
|
type = "Linux";
|
|
access = {
|
|
online.available = true;
|
|
};
|
|
network.networks = {
|
|
local = {
|
|
slaac.enable = false;
|
|
address4 = "10.1.1.9";
|
|
address6 = null;
|
|
};
|
|
tail = {
|
|
address4 = "100.127.157.98";
|
|
address6 = "fd7a:115c:a1e0::1901:9d62";
|
|
};
|
|
};
|
|
exports = {
|
|
status.displayName = "reisen/KVM";
|
|
services = {
|
|
tailscale.enable = true;
|
|
sshd.enable = true;
|
|
#nkvm.enable = true;
|
|
};
|
|
};
|
|
}
|