From 9ba271bb9419a1e5db291893ef819f9ba4b0c755 Mon Sep 17 00:00:00 2001 From: Jimbo Date: Wed, 16 Oct 2024 00:16:56 -0400 Subject: [PATCH] More pinebook changes --- hosts/shuttleworth/system/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/hosts/shuttleworth/system/default.nix b/hosts/shuttleworth/system/default.nix index 3f406b5..3ade4f6 100644 --- a/hosts/shuttleworth/system/default.nix +++ b/hosts/shuttleworth/system/default.nix @@ -1,4 +1,4 @@ -{ hardware, ... }: +{ config, hardware, ... }: { imports = [ ./hardware @@ -21,7 +21,6 @@ ]; networking.hostName = "shuttleworth"; - - # Force Electron to use Wayland - environment.sessionVariables.NIXOS_OZONE_WL = "1"; + hardware.opengl.driSupport32Bit = lib.mkForce false; + networking.wireguard.interfaces."${config.ips.wgInt}".ips = [ "${config.ips.wgSpan}.17/24" ]; }