mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
18 lines
291 B
Nix
18 lines
291 B
Nix
_: {
|
|
imports = [
|
|
./proxmox.nix
|
|
];
|
|
arch = "x86_64";
|
|
type = "NixOS";
|
|
modules = [
|
|
./nixos.nix
|
|
];
|
|
exports = {
|
|
services = {
|
|
tailscale.enable = true;
|
|
home-assistant.enable = true;
|
|
zigbee2mqtt.enable = true;
|
|
postgresql.enable = true;
|
|
};
|
|
};
|
|
}
|