optimise dms

This commit is contained in:
EdenQwQ 2025-10-06 12:08:21 +08:00
parent fdbf3e4453
commit 275dad511f
5 changed files with 11 additions and 7 deletions

View file

@ -7,7 +7,13 @@ with lib;
};
config = {
programs.waybar.enable = config.desktopShell == "waybar";
programs.dankMaterialShell.enable = config.desktopShell == "dank";
programs.waybar = {
enable = config.desktopShell == "waybar";
systemd.enable = config.desktopShell == "waybar";
};
programs.dankMaterialShell = {
enable = config.desktopShell == "dms";
enableSystemd = config.desktopShell == "dms";
};
};
}