remove yubikey-manager
All checks were successful
Hydra rainbow-resort.x86_64-linux Hydra build #22960 of nixos-config:pr622:rainbow-resort.x86_64-linux
Hydra thinkrac.x86_64-linux Hydra build #22961 of nixos-config:pr622:thinkrac.x86_64-linux

This commit is contained in:
Charlotte 🦝 Delenk 2024-11-02 15:06:36 +01:00
parent 4dfacb5c28
commit d8d1922608
2 changed files with 6 additions and 5 deletions

View file

@ -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 = {

View file

@ -1,5 +1,4 @@
{pkgs, ...}: {
home.packages = with pkgs; [
yubikey-manager-qt
];
}