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:
@@ -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";
|
||||
};
|
||||
};
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user