nix-config/modules/nix/de/kde.nix
2025-07-09 00:02:13 +02:00

16 lines
292 B
Nix

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