summaryrefslogtreecommitdiff
path: root/profiles/desktop/plasma/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-04-17 12:00:55 -0400
committerseth <[email protected]>2023-04-17 12:01:21 -0400
commit92ca826539092f33c8e19a19c7a9ea0def2aece0 (patch)
treec6ff98c3f645f189b559bc1a69904fec217a946c /profiles/desktop/plasma/default.nix
parent98921a299be9f22bde9204e1fd05d0ea0fb0c6ed (diff)
move most configurations to modules
Diffstat (limited to 'profiles/desktop/plasma/default.nix')
-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";
-}