NixOS-Config/hosts/redmond/system/default.nix

29 lines
745 B
Nix
Raw Normal View History

{ config, ... }:
2024-10-20 18:56:59 -04:00
{
imports = [
./hardware
2024-10-20 20:29:38 -04:00
./boot
2024-10-20 18:56:59 -04:00
# Apps and programs
../../../modules/system
../../../modules/system/accounts
../../../modules/system/desktop
../../../modules/system/programs
../../../modules/system/services
# Devices and hardware
../../../modules/system/devices
../../../modules/system/devices/boot/systemd
../../../modules/system/devices/networking/wireless
../../../modules/system/devices/networking/firewall/pc
../../../modules/system/devices/networking/wireguard/pc
# Extras
../../../overlays
../../../variables
];
networking.hostName = "redmond";
networking.wireguard.interfaces."${config.ips.wgInt}".ips = [ "${config.ips.wgSpan}.20/24" ];
}