added plasma6

This commit is contained in:
willifan 2025-01-18 17:04:47 +01:00
parent bbdf0c20e0
commit 68cc9cbc1d
4 changed files with 14 additions and 1 deletions

View file

@ -13,6 +13,7 @@
./nfs-client.nix
./nix-ld.nix
./pipewire.nix
./plasma6.nix
./polkit.nix
./printers.nix
./remoteBuilder.nix

View file

@ -0,0 +1,6 @@
{ lib, config, ... }:
lib.mkIf config.desktop.wm.plasma6.enable {
services.desktopManager.plasma6 = {
enable = true;
};
}