mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-19 10:23:06 +01:00
Jo
e1bbf4856e
refactor: remove some comments feat: set VSCodium color scheme to Catppuccin Macchiato
20 lines
No EOL
464 B
Nix
20 lines
No EOL
464 B
Nix
{
|
|
lib,
|
|
namespace,
|
|
config,
|
|
...
|
|
}: with lib; with lib.${namespace};
|
|
let
|
|
cfg = config.${namespace}.desktop.plasma;
|
|
in {
|
|
options.${namespace}.desktop.plasma = { enable = mkEnableOption "Whether to enable the KDE Plasma desktop environment"; };
|
|
|
|
config = mkIf cfg.enable {
|
|
services.xserver.enable = true;
|
|
|
|
services.desktopManager.plasma6.enable = true;
|
|
services.displayManager.sddm.enable = true;
|
|
|
|
programs.kdeconnect.enable = true;
|
|
};
|
|
} |