restructure

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-06-17 12:45:52 +03:00
parent 24f4e90a75
commit c11eeb9d20
37 changed files with 167 additions and 194 deletions
+22
View File
@@ -0,0 +1,22 @@
{
config,
pkgs,
lib,
...
}:
with lib; let
cfg = config.desktop.plasma;
in {
options = {
desktop.plasma = {
enable = mkEnableOption "enable plasma desktop";
};
};
config = mkIf cfg.enable {
module.desktop.displayManager = "sddm";
sound.pipewire.enable = true;
services.desktopManager.plasma6.enable = true;
stylix.targets.qt.enable = mkDefault false;
};
}