aboutsummaryrefslogtreecommitdiffstats
path: root/modules/nixos/sils/plasma.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nixos/sils/plasma.nix')
-rw-r--r--modules/nixos/sils/plasma.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/modules/nixos/sils/plasma.nix b/modules/nixos/sils/plasma.nix
deleted file mode 100644
index f196447..0000000
--- a/modules/nixos/sils/plasma.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- config,
- lib,
- pkgs,
- ...
-}: let
- cfg = config.sils.plasma;
-in {
- options.sils.plasma.enable = lib.mkEnableOption "KDE Plasma";
- config = lib.mkIf cfg.enable {
- services = {
- greetd.enable = lib.mkForce false;
- tlp.enable = lib.mkForce false;
- displayManager.sddm = {
- enable = true;
- settings.General.DisplayServer = "wayland";
- wayland.enable = true;
- };
- desktopManager.plasma6 = {
- enable = true;
- };
- };
- environment.plasma6.excludePackages = with pkgs.kdePackages; [
- kwallet
- kwallet-pam
- kwalletmanager
- ];
- };
-}