2024-10-18 19:54:52 -04:00
|
|
|
{ config, ... }:
|
2024-10-18 15:32:32 -04:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./hardware
|
2024-10-18 15:44:38 -04:00
|
|
|
./boot
|
2024-10-18 15:32:32 -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/lanzaboote
|
|
|
|
../../../modules/system/devices/networking/wireless
|
|
|
|
../../../modules/system/devices/networking/firewall/pc
|
|
|
|
../../../modules/system/devices/networking/wireguard/pc
|
|
|
|
|
|
|
|
# Extras
|
|
|
|
../../../overlays
|
|
|
|
../../../variables
|
|
|
|
];
|
|
|
|
|
2024-10-18 20:33:03 -04:00
|
|
|
services.keyd.keyboards.default.settings.main = {
|
|
|
|
leftmeta = "overload(control, esc)";
|
|
|
|
leftcontrol = "leftmeta";
|
|
|
|
f13 = "delete";
|
|
|
|
};
|
|
|
|
|
2024-10-18 15:32:32 -04:00
|
|
|
networking.hostName = "lacros";
|
|
|
|
networking.wireguard.interfaces."${config.ips.wgInt}".ips = [ "${config.ips.wgSpan}.18/24" ];
|
|
|
|
}
|