From 64958b068f62bbcac8d939d2b2002dfb8de62926 Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Thu, 24 Apr 2025 14:06:32 +0200 Subject: [PATCH] Delete unnecessary nixos wayland config --- hosts/common/optional/wayland.nix | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 hosts/common/optional/wayland.nix diff --git a/hosts/common/optional/wayland.nix b/hosts/common/optional/wayland.nix deleted file mode 100644 index 5b72ee9..0000000 --- a/hosts/common/optional/wayland.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: - -{ - - environment.sessionVariables.NIXOS_OZONE_WL = "1"; # Hint electron apps to use wayland - - security.pam.services.gtklock = { }; - - environment.systemPackages = with pkgs; [ - kdePackages.qtwayland - wl-clipboard - ]; -}