mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-17 04:24:11 -05:00
19 lines
299 B
Nix
19 lines
299 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./topology-config.nix
|
|
../../modules
|
|
];
|
|
|
|
networking.hostName = "WCE-Overseer";
|
|
networking.hostId = "7fb1c512";
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
user.overseer.enable = true;
|
|
}
|