added plasma6
This commit is contained in:
parent
bbdf0c20e0
commit
68cc9cbc1d
4 changed files with 14 additions and 1 deletions
|
@ -15,7 +15,8 @@
|
||||||
hyprlock.enable = false;
|
hyprlock.enable = false;
|
||||||
hypridle.enable = false;
|
hypridle.enable = false;
|
||||||
hyprpaper.enable = false;
|
hyprpaper.enable = false;
|
||||||
wm.river.enable = true;
|
wm.plasma6.enable = true;
|
||||||
|
windowManager = "startplasma-wayland";
|
||||||
|
|
||||||
hyprland = {
|
hyprland = {
|
||||||
hardware.Puenktchen.enable = true;
|
hardware.Puenktchen.enable = true;
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
./nfs-client.nix
|
./nfs-client.nix
|
||||||
./nix-ld.nix
|
./nix-ld.nix
|
||||||
./pipewire.nix
|
./pipewire.nix
|
||||||
|
./plasma6.nix
|
||||||
./polkit.nix
|
./polkit.nix
|
||||||
./printers.nix
|
./printers.nix
|
||||||
./remoteBuilder.nix
|
./remoteBuilder.nix
|
||||||
|
|
6
modules/default/common/desktop/plasma6.nix
Normal file
6
modules/default/common/desktop/plasma6.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ lib, config, ... }:
|
||||||
|
lib.mkIf config.desktop.wm.plasma6.enable {
|
||||||
|
services.desktopManager.plasma6 = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -43,6 +43,11 @@
|
||||||
type = lib.types.str;
|
type = lib.types.str;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
wm.plasma6.enable = lib.mkOption {
|
||||||
|
default = false;
|
||||||
|
type = lib.types.bool;
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
server.enable = lib.mkOption {
|
server.enable = lib.mkOption {
|
||||||
default = false;
|
default = false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue