Remove Qt 5.15 from Plasma closure
This commit is contained in:
parent
61eb2b639b
commit
053b05d14d
|
@ -394,7 +394,7 @@ let
|
||||||
"auth optional ${pkgs.pam_mount}/lib/security/pam_mount.so"}
|
"auth optional ${pkgs.pam_mount}/lib/security/pam_mount.so"}
|
||||||
${optionalString cfg.enableKwallet
|
${optionalString cfg.enableKwallet
|
||||||
("auth optional ${pkgs.plasma5.kwallet-pam}/lib/security/pam_kwallet5.so" +
|
("auth optional ${pkgs.plasma5.kwallet-pam}/lib/security/pam_kwallet5.so" +
|
||||||
" kwalletd=${pkgs.libsForQt5.kwallet.bin}/bin/kwalletd5")}
|
" kwalletd=${pkgs.kdeFrameworks.kwallet.bin}/bin/kwalletd5")}
|
||||||
${optionalString cfg.enableGnomeKeyring
|
${optionalString cfg.enableGnomeKeyring
|
||||||
"auth optional ${pkgs.gnome3.gnome-keyring}/lib/security/pam_gnome_keyring.so"}
|
"auth optional ${pkgs.gnome3.gnome-keyring}/lib/security/pam_gnome_keyring.so"}
|
||||||
${optionalString cfg.googleAuthenticator.enable
|
${optionalString cfg.googleAuthenticator.enable
|
||||||
|
@ -471,7 +471,7 @@ let
|
||||||
"session optional ${pkgs.apparmor-pam}/lib/security/pam_apparmor.so order=user,group,default debug"}
|
"session optional ${pkgs.apparmor-pam}/lib/security/pam_apparmor.so order=user,group,default debug"}
|
||||||
${optionalString (cfg.enableKwallet)
|
${optionalString (cfg.enableKwallet)
|
||||||
("session optional ${pkgs.plasma5.kwallet-pam}/lib/security/pam_kwallet5.so" +
|
("session optional ${pkgs.plasma5.kwallet-pam}/lib/security/pam_kwallet5.so" +
|
||||||
" kwalletd=${pkgs.libsForQt5.kwallet.bin}/bin/kwalletd5")}
|
" kwalletd=${pkgs.kdeFrameworks.kwallet.bin}/bin/kwalletd5")}
|
||||||
${optionalString (cfg.enableGnomeKeyring)
|
${optionalString (cfg.enableGnomeKeyring)
|
||||||
"session optional ${pkgs.gnome3.gnome-keyring}/lib/security/pam_gnome_keyring.so auto_start"}
|
"session optional ${pkgs.gnome3.gnome-keyring}/lib/security/pam_gnome_keyring.so auto_start"}
|
||||||
${optionalString (config.virtualisation.lxc.lxcfs.enable)
|
${optionalString (config.virtualisation.lxc.lxcfs.enable)
|
||||||
|
|
|
@ -7,8 +7,9 @@ let
|
||||||
xcfg = config.services.xserver;
|
xcfg = config.services.xserver;
|
||||||
cfg = xcfg.desktopManager.plasma5;
|
cfg = xcfg.desktopManager.plasma5;
|
||||||
|
|
||||||
inherit (pkgs) kdeApplications plasma5;
|
inherit (pkgs) kdeApplications kdeFrameworks plasma5;
|
||||||
libsForQt5 = pkgs.libsForQt514;
|
libsForQt5 = pkgs.libsForQt514;
|
||||||
|
qt5 = pkgs.qt514;
|
||||||
inherit (pkgs) writeText;
|
inherit (pkgs) writeText;
|
||||||
|
|
||||||
pulseaudio = config.hardware.pulseaudio;
|
pulseaudio = config.hardware.pulseaudio;
|
||||||
|
@ -84,7 +85,7 @@ let
|
||||||
# recognize that software that has been removed.
|
# recognize that software that has been removed.
|
||||||
rm -fv $HOME/.cache/ksycoca*
|
rm -fv $HOME/.cache/ksycoca*
|
||||||
|
|
||||||
${pkgs.libsForQt5.kservice}/bin/kbuildsycoca5
|
${libsForQt5.kservice}/bin/kbuildsycoca5
|
||||||
'';
|
'';
|
||||||
|
|
||||||
set_XDG_CONFIG_HOME = ''
|
set_XDG_CONFIG_HOME = ''
|
||||||
|
@ -204,7 +205,9 @@ in
|
||||||
KERNEL=="i2c-[0-9]*", TAG+="uaccess"
|
KERNEL=="i2c-[0-9]*", TAG+="uaccess"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; with qt5; with libsForQt5; with plasma5; with kdeApplications;
|
environment.systemPackages =
|
||||||
|
with qt5; with libsForQt5;
|
||||||
|
with plasma5; with kdeApplications; with kdeFrameworks;
|
||||||
[
|
[
|
||||||
frameworkintegration
|
frameworkintegration
|
||||||
kactivities
|
kactivities
|
||||||
|
@ -294,7 +297,7 @@ in
|
||||||
|
|
||||||
qtvirtualkeyboard
|
qtvirtualkeyboard
|
||||||
|
|
||||||
xdg-user-dirs # Update user dirs as described in https://freedesktop.org/wiki/Software/xdg-user-dirs/
|
pkgs.xdg-user-dirs # Update user dirs as described in https://freedesktop.org/wiki/Software/xdg-user-dirs/
|
||||||
]
|
]
|
||||||
|
|
||||||
# Phonon audio backend
|
# Phonon audio backend
|
||||||
|
|
Loading…
Reference in New Issue