2025-01-01 22:23:27 -05:00
|
|
|
{ lib, ... }:
|
2024-10-20 04:25:07 -04:00
|
|
|
{
|
|
|
|
imports = [
|
2025-01-01 22:23:27 -05:00
|
|
|
./boot
|
|
|
|
./filesystems
|
2024-10-20 04:25:07 -04:00
|
|
|
./hardware
|
2025-01-01 22:23:27 -05:00
|
|
|
./users
|
|
|
|
../../modules/system
|
|
|
|
];
|
2024-10-20 04:25:07 -04:00
|
|
|
|
2025-01-01 22:23:27 -05:00
|
|
|
networking = {
|
|
|
|
hostName = "prophet";
|
|
|
|
hostId = "97a21a38";
|
|
|
|
wg-quick.interfaces.wgc.address = [ "10.100.0.19/24" ];
|
|
|
|
};
|
2024-10-20 04:25:07 -04:00
|
|
|
|
2025-01-01 22:23:27 -05:00
|
|
|
environment.persistence."/persist".enable = lib.mkForce false;
|
2024-10-20 04:25:07 -04:00
|
|
|
|
2025-01-01 22:23:27 -05:00
|
|
|
system = {
|
|
|
|
mailserver.enable = true;
|
|
|
|
wireless.enable = false;
|
|
|
|
wireguard.client.enable = true;
|
|
|
|
stateVersion = "24.05";
|
|
|
|
};
|
2024-10-20 04:25:07 -04:00
|
|
|
}
|