summaryrefslogtreecommitdiff
path: root/modules/nixos/desktop
diff options
context:
space:
mode:
authorseth <[email protected]>2023-05-31 19:56:54 -0400
committerseth <[email protected]>2023-05-31 19:56:54 -0400
commit2e880158a16f38cc06dddab8f1f280ff2d350383 (patch)
tree2bab654764564201cf9848e730c278f67ade63fc /modules/nixos/desktop
parent48609163947ee46b65631a4cdf63e4a37fc68ac7 (diff)
update nixpkgs-stable to 23.05
Diffstat (limited to 'modules/nixos/desktop')
-rw-r--r--modules/nixos/desktop/plasma/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/modules/nixos/desktop/plasma/default.nix b/modules/nixos/desktop/plasma/default.nix
index 84960f3..f7a8065 100644
--- a/modules/nixos/desktop/plasma/default.nix
+++ b/modules/nixos/desktop/plasma/default.nix
@@ -12,17 +12,19 @@ in {
config = mkIf cfg.enable {
getchoo.desktop.enable = true;
- environment.systemPackages = with pkgs; [pinentry-qt];
+ environment = {
+ systemPackages = with pkgs; [pinentry-qt];
+ plasma5.excludePackages = with pkgs.libsForQt5; [
+ khelpcenter
+ plasma-browser-integration
+ print-manager
+ ];
+ };
services.xserver = {
displayManager.sddm.enable = true;
desktopManager.plasma5 = {
enable = true;
- excludePackages = with pkgs.libsForQt5; [
- khelpcenter
- plasma-browser-integration
- print-manager
- ];
useQtScaling = true;
};
};