summaryrefslogtreecommitdiff
path: root/profiles/desktop/plasma
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/desktop/plasma')
-rw-r--r--profiles/desktop/plasma/default.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/profiles/desktop/plasma/default.nix b/profiles/desktop/plasma/default.nix
deleted file mode 100644
index b04279d..0000000
--- a/profiles/desktop/plasma/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{pkgs, ...}: {
- imports = [
- ../.
- ];
-
- 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";
-}