mv kde to module

This commit is contained in:
smayzy
2025-07-09 00:02:13 +02:00
parent 8014c0e97a
commit 2ca970a578
4 changed files with 23 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.kde.enable = mkOption {
type = types.bool;
default = false;
description = "kde";
};
config = mkIf config.smayzy.kde.enable {
services.desktopManager.plasma6.enable = true;
};
}