diff options
| author | seth <[email protected]> | 2023-05-08 00:21:41 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-05-08 00:21:41 -0400 |
| commit | 9cedd06b8589a5d39a7a85e2efe646a8edebac53 (patch) | |
| tree | 8884a1238b0586396bc403098e23e78505ab514e /modules/desktop/plasma | |
| parent | 589c80eb1bcaf76b4a1a7e6f9cdd725fdb04e063 (diff) | |
modules: merge base and nixos
Diffstat (limited to 'modules/desktop/plasma')
| -rw-r--r-- | modules/desktop/plasma/default.nix | 32 |
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"; - }; -} |
