1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-30 00:12:50 -05:00

nix: update home-manager module to remove default*, add clsettings (#1233)

* nix: update home-manager module, add clsettings

* nix: resolve message and rename clsettings->clipboardSettings.

* nix: fix home-manager plugin_settings management. add option for whether plugin settings should be managed by nix.
This commit is contained in:
Ethan Todd
2026-01-04 09:18:28 -05:00
committed by GitHub
parent f163b97c17
commit 2e1bed5fb5
2 changed files with 69 additions and 29 deletions

View File

@@ -10,7 +10,7 @@ let
"programs"
"dank-material-shell"
];
jsonFormat = pkgs.formats.json { };
builtInRemovedMsg = "This is now built-in in DMS and doesn't need additional dependencies.";
in
{
@@ -37,7 +37,7 @@ in
};
dgop = {
package = lib.mkPackageOption pkgs "dgop" {};
package = lib.mkPackageOption pkgs "dgop" { };
};
enableSystemMonitoring = lib.mkOption {
@@ -89,6 +89,11 @@ in
type = types.either types.package types.path;
description = "Source of the plugin package or path";
};
settings = lib.mkOption {
type = jsonFormat.type;
default = { };
description = "Plugin settings as an attribute set";
};
};
}
);