NixOS-Config/hosts/shuttleworth/system/default.nix
2024-10-16 00:04:56 -04:00

28 lines
680 B
Nix

{ hardware, ... }:
{
imports = [
./hardware
# 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/extlinux
../../../modules/system/devices/networking/firewall/pc
../../../modules/system/devices/networking/wireguard/pc
# Imports
hardware.nixosModules.pine64-pinebook-pro
];
networking.hostName = "shuttleworth";
# Force Electron to use Wayland
environment.sessionVariables.NIXOS_OZONE_WL = "1";
}