summaryrefslogtreecommitdiff
path: root/modules/nixos/desktop/plasma
diff options
context:
space:
mode:
authorseth <[email protected]>2023-10-01 10:41:09 -0400
committerseth <[email protected]>2023-10-01 10:49:46 -0400
commita8630322f77dbb7be4810099a42352b9278996a1 (patch)
treeb8df66a7e5b9d8c31b27a4a9b357ff7e4b9d418f /modules/nixos/desktop/plasma
parent30f55e656d344e017f66ecbae8eb27cf13ba53bb (diff)
treewide!: flatten to parts/ layout
Diffstat (limited to 'modules/nixos/desktop/plasma')
-rw-r--r--modules/nixos/desktop/plasma/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/modules/nixos/desktop/plasma/default.nix b/modules/nixos/desktop/plasma/default.nix
deleted file mode 100644
index 2034802..0000000
--- a/modules/nixos/desktop/plasma/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- config,
- lib,
- pkgs,
- ...
-}: let
- cfg = config.desktop.plasma;
- inherit (lib) mkEnableOption mkIf;
-in {
- options.desktop.plasma.enable = mkEnableOption "enable plasma";
-
- config = mkIf cfg.enable {
- desktop.enable = true;
-
- environment = {
- plasma5.excludePackages = with pkgs.libsForQt5; [
- khelpcenter
- plasma-browser-integration
- print-manager
- ];
- };
-
- services.xserver = {
- displayManager.sddm.enable = true;
- desktopManager.plasma5 = {
- enable = true;
- useQtScaling = true;
- };
- };
- };
-}