nix-config/modules/nix/de/kde.nix
smayzy c5ef752a66
All checks were successful
nix flake show / show-flake (push) Successful in 35s
clean modules & add power modes
2025-07-24 14:21:53 +02:00

16 lines
286 B
Nix

{ lib, config, ... }:
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;
};
}