NixOS-Config/hosts/bomberman/default.nix

29 lines
862 B
Nix
Raw Normal View History

{ config, ... }:
{
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
../../../modules/system/devices/networking/wireguard/pc
../../../modules/system/programs/git
../../../modules/system/programs/security
../../../modules/system/services/common
../../../modules/system/services/server/acme
2024-10-22 21:08:23 -04:00
../../../modules/system/services/server/webhost/nginx
../../../modules/system/services/server/mailserver
# Misc
../../../overlays
../../../variables
];
networking.hostName = "bomberman";
2024-11-07 18:17:51 -05:00
networking.wireguard.interfaces.wgc.ips = [ "10.100.0.19/24" ];
}