mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
17 lines
241 B
Nix
17 lines
241 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../modules
|
|
];
|
|
|
|
networking.hostName = "WCE-Overseer";
|
|
proxmoxLXC.manageNetwork = true;
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
user.overseer.enable = true;
|
|
}
|