nix-config/modules/nix/de/kde.nix
smayzy d1329448d8
All checks were successful
nixos config pipeline / show-flake (push) Successful in 24s
nixos config pipeline / deploy (push) Successful in 58s
add xserver for kde
2025-10-19 11:25:41 +02:00

17 lines
321 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;
services.xserver.enable = true;
};
}