mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-12 07:38:56 -05:00
14 lines
294 B
Nix
14 lines
294 B
Nix
{lib, config, pkgs, ...}:{
|
|
imports = [
|
|
../../modules
|
|
];
|
|
|
|
networking.hostName = "WCE-Overseer";
|
|
networking.firewall.allowedTCPPorts = [ 8123 ];
|
|
proxmoxLXC.manageNetwork = true;
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
user.overseer.enable = true;
|
|
}
|