nixos-config/hosts/prophet/default.nix
2025-03-28 23:38:21 -04:00

24 lines
405 B
Nix

{ modulesPath, ... }:
{
imports = [
./boot
./disko
./filesystems
./hardware
./services
./users
../../modules/system
(modulesPath + "/profiles/headless.nix")
];
networking = {
hostName = "prophet";
hostId = "97a21a38";
wg-quick.interfaces.wgc.address = [ "10.100.0.19/24" ];
};
system = {
server.enable = true;
stateVersion = "24.05";
};
}