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

@ -15,7 +15,8 @@
hyprlock.enable = false;
hypridle.enable = false;
hyprpaper.enable = false;
wm.river.enable = true;
wm.plasma6.enable = true;
windowManager = "startplasma-wayland";
hyprland = {
hardware.Puenktchen.enable = true;

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;
};
}

View file

@ -43,6 +43,11 @@
type = lib.types.str;
};
wm.plasma6.enable = lib.mkOption {
default = false;
type = lib.types.bool;
};
};
server.enable = lib.mkOption {
default = false;