summaryrefslogtreecommitdiff
path: root/modules/desktop/plasma
diff options
context:
space:
mode:
Diffstat (limited to 'modules/desktop/plasma')
-rw-r--r--modules/desktop/plasma/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/modules/desktop/plasma/default.nix b/modules/desktop/plasma/default.nix
deleted file mode 100644
index 84960f3..0000000
--- a/modules/desktop/plasma/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- config,
- lib,
- pkgs,
- ...
-}: let
- cfg = config.getchoo.desktop.plasma;
- inherit (lib) mkEnableOption mkIf;
-in {
- options.getchoo.desktop.plasma.enable = mkEnableOption "enable plasma";
-
- config = mkIf cfg.enable {
- getchoo.desktop.enable = true;
-
- environment.systemPackages = with pkgs; [pinentry-qt];
-
- services.xserver = {
- displayManager.sddm.enable = true;
- desktopManager.plasma5 = {
- enable = true;
- excludePackages = with pkgs.libsForQt5; [
- khelpcenter
- plasma-browser-integration
- print-manager
- ];
- useQtScaling = true;
- };
- };
-
- programs.gnupg.agent.pinentryFlavor = "qt";
- };
-}