moving some stuff around

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-11-30 00:27:29 -06:00
parent 8a0ab71dae
commit 971d997920
2 changed files with 29 additions and 29 deletions

View file

@ -9,7 +9,6 @@ let
inherit (lib)
mkOption
types
mkEnableOption
mkIf
mkMerge
optionals
@ -46,7 +45,11 @@ let
in
{
options.ringofstorms.dePlasma = {
enable = mkEnableOption "KDE Plasma desktop";
enable = mkOption {
type = types.bool;
default = true;
description = "Enable KDE Plasma DE.";
};
wayland = mkOption {
type = types.bool;