diff --git a/config/home-manager/base.nix b/config/home-manager/base.nix index fd9035a9..53791b3e 100644 --- a/config/home-manager/base.nix +++ b/config/home-manager/base.nix @@ -84,7 +84,6 @@ desktop: { ++ ( if desktop then [ - yubikey-manager yt-dlp oxipng jpegoptim @@ -95,9 +94,12 @@ desktop: { ] else [] ); - sessionVariables = if desktop then { - QT_PLUGIN_PATH = lib.mkForce "\${QT_PLUGIN_PATH}:${config.i18n.inputMethod.package}/${pkgs.qt6.qtbase.qtPluginPrefix}:${pkgs.kdePackages.kimageformats}/${pkgs.qt6.qtbase.qtPluginPrefix}"; - } else {}; + sessionVariables = + if desktop + then { + QT_PLUGIN_PATH = lib.mkForce "\${QT_PLUGIN_PATH}:${config.i18n.inputMethod.package}/${pkgs.qt6.qtbase.qtPluginPrefix}:${pkgs.kdePackages.kimageformats}/${pkgs.qt6.qtbase.qtPluginPrefix}"; + } + else {}; }; programs.eza = { diff --git a/config/programs/yubikey.nix b/config/programs/yubikey.nix index 65019b6d..9f25a129 100644 --- a/config/programs/yubikey.nix +++ b/config/programs/yubikey.nix @@ -1,5 +1,4 @@ {pkgs, ...}: { home.packages = with pkgs; [ - yubikey-manager-qt ]; }