infrastructure/systems/mediabox/default.nix
2024-04-15 11:23:20 -07:00

16 lines
216 B
Nix

_: {
imports = [
./proxmox.nix
];
arch = "x86_64";
type = "NixOS";
modules = [
./nixos.nix
];
exports = {
services = {
plex.enable = true;
invidious.enable = true;
};
};
}