summaryrefslogtreecommitdiff
path: root/modules/nixos
diff options
context:
space:
mode:
authorseth <[email protected]>2024-05-10 21:03:00 -0400
committerseth <[email protected]>2024-05-10 21:30:32 -0400
commiteb14eca101346dc5acf005060b07efd33c484556 (patch)
tree365cacf5c69a82df4bb8644de18ef27368688055 /modules/nixos
parent7b524417514f41c2a72ed77958151fb412f5d6e9 (diff)
treewide: remove plasma 5
Diffstat (limited to 'modules/nixos')
-rw-r--r--modules/nixos/desktop/default.nix1
-rw-r--r--modules/nixos/desktop/plasma5/default.nix28
2 files changed, 0 insertions, 29 deletions
diff --git a/modules/nixos/desktop/default.nix b/modules/nixos/desktop/default.nix
index 6fbfd59..17392c4 100644
--- a/modules/nixos/desktop/default.nix
+++ b/modules/nixos/desktop/default.nix
@@ -17,7 +17,6 @@ in {
./budgie
./gnome
./plasma
- ./plasma5
];
config = lib.mkIf cfg.enable {
diff --git a/modules/nixos/desktop/plasma5/default.nix b/modules/nixos/desktop/plasma5/default.nix
deleted file mode 100644
index be9edc8..0000000
--- a/modules/nixos/desktop/plasma5/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- config,
- lib,
- pkgs,
- ...
-}: let
- cfg = config.desktop.plasma5;
-in {
- options.desktop.plasma5.enable = lib.mkEnableOption "Plasma 5 desktop";
-
- config = lib.mkIf cfg.enable {
- environment = {
- plasma5.excludePackages = with pkgs.libsForQt5; [
- khelpcenter
- plasma-browser-integration
- print-manager
- ];
- };
-
- services.xserver = {
- displayManager.sddm.enable = true;
- desktopManager.plasma5 = {
- enable = true;
- useQtScaling = true;
- };
- };
- };
-}