nixos-config/hosts/prophet/default.nix
2025-03-05 05:03:16 -05:00

22 lines
365 B
Nix

{ lib, ... }:
{
imports = [
./boot
./filesystems
./hardware
./users
../../modules/system
];
networking = {
hostName = "prophet";
hostId = "97a21a38";
wg-quick.interfaces.wgc.address = [ "10.100.0.19/24" ];
};
system = {
mailserver.enable = true;
wireguard.client.enable = true;
stateVersion = "24.05";
};
}