2024-10-22 20:43:32 -04:00
|
|
|
{ config, ... }:
|
2024-10-20 04:25:07 -04:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./hardware
|
|
|
|
|
|
|
|
# Apps and programs
|
|
|
|
../../../modules/system
|
|
|
|
../../../modules/system/accounts
|
|
|
|
../../../modules/system/devices/filesystems
|
|
|
|
../../../modules/system/devices/boot/systemd
|
|
|
|
../../../modules/system/devices/networking
|
|
|
|
../../../modules/system/devices/networking/firewall/pc
|
2024-10-20 15:01:21 -04:00
|
|
|
../../../modules/system/devices/networking/wireguard/pc
|
2024-10-20 04:25:07 -04:00
|
|
|
../../../modules/system/programs/git
|
|
|
|
../../../modules/system/programs/security
|
|
|
|
../../../modules/system/services/common
|
2024-10-22 21:00:03 -04:00
|
|
|
../../../modules/system/services/server/acme
|
2024-10-22 21:08:23 -04:00
|
|
|
../../../modules/system/services/server/webhost/nginx
|
2024-10-22 21:38:37 -04:00
|
|
|
../../../modules/system/services/server/mailserver
|
2024-10-20 04:25:07 -04:00
|
|
|
|
|
|
|
# Misc
|
|
|
|
../../../overlays
|
|
|
|
../../../variables
|
|
|
|
];
|
|
|
|
|
|
|
|
networking.hostName = "bomberman";
|
2024-11-07 18:17:51 -05:00
|
|
|
networking.wireguard.interfaces.wgc.ips = [ "10.100.0.19/24" ];
|
2024-10-20 04:25:07 -04:00
|
|
|
}
|