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

34 lines
827 B
Nix
Raw Normal View History

{ lanzaboote, ... }:
2024-10-12 20:44:05 -04:00
{
imports = [
2024-10-15 02:40:43 -04:00
./hardware
2024-10-12 20:44:05 -04:00
# Apps and programs
../../../modules/system
../../../modules/system/accounts
../../../modules/system/desktop
../../../modules/system/programs
../../../modules/system/services
../../../modules/system/services/pc/sunshine
../../../modules/system/services/pc/virtualization/qemu
2024-10-12 20:44:05 -04:00
# Devices and hardware
../../../modules/system/devices
../../../modules/system/devices/boot/lanzaboote
../../../modules/system/devices/video/nvidia
2024-10-15 02:40:43 -04:00
../../../modules/system/devices/networking/firewall/pc
2024-10-15 22:41:19 -04:00
2024-10-16 00:51:44 -04:00
# Misc
../../../overlays
../../../variables
2024-10-15 22:41:19 -04:00
# Imports
lanzaboote.nixosModules.lanzaboote
2024-10-12 20:44:05 -04:00
];
networking.hostName = "firefly";
# Force Electron to use Wayland
environment.sessionVariables.NIXOS_OZONE_WL = "1";
}