From 27788e35994bf40a020baf487452e54f710d7476 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Wed, 27 Nov 2024 00:16:22 +0000 Subject: [PATCH] modules/useable: remove superfluous plasma-thunderbolt addition already taken over by plasma6 module: https://github.com/NixOS/nixpkgs/blob/nixos-24.05/nixos/modules/services/desktop-managers/plasma6.nix --- nix/nixos-modules/useable.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/nix/nixos-modules/useable.nix b/nix/nixos-modules/useable.nix index f47e4eb..169c853 100644 --- a/nix/nixos-modules/useable.nix +++ b/nix/nixos-modules/useable.nix @@ -55,14 +55,10 @@ in environment.systemPackages = with pkgs; let - inherit (lib.lists) flatten optional optionals; + inherit (lib.lists) flatten optionals; in flatten [ - (optional ( - config.services.hardware.bolt.enable && config.services.desktopManager.plasma6.enable - ) kdePackages.plasma-thunderbolt) # TODO upstream - (optionals config.hardware.bluetooth.enable [ bluetuith ])