mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
17 lines
242 B
Nix
17 lines
242 B
Nix
_: {
|
|
imports = [
|
|
./proxmox.nix
|
|
];
|
|
arch = "x86_64";
|
|
type = "NixOS";
|
|
modules = [
|
|
./nixos.nix
|
|
];
|
|
exports = {
|
|
services = {
|
|
sshd.enable = true;
|
|
plex.enable = true;
|
|
invidious.enable = true;
|
|
};
|
|
};
|
|
}
|