1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-15 18:22:08 -04:00

nix: let paths be used instead of only packages in plugins (#988)

This commit is contained in:
Lucas
2025-12-11 19:57:22 -03:00
committed by GitHub
parent 5c3346aa9d
commit 89dcd72d70
3 changed files with 9 additions and 4 deletions

View File

@@ -39,6 +39,11 @@ in
environment.systemPackages = [ cfg.quickshell.package ] ++ common.packages;
environment.etc = lib.mapAttrs' (name: value: {
name = "xdg/quickshell/dms-plugins/${name}";
inherit value;
}) common.plugins;
services.power-profiles-daemon.enable = lib.mkDefault true;
services.accounts-daemon.enable = lib.mkDefault true;
};