548a438f6a
Rename the helper function `wisdomSimpleSlice` to `wisdomSlice` across the codebase and update documentation to reflect the new naming convention. This change simplifies the API for creating trivial single-package slices.
9 lines
267 B
Nix
9 lines
267 B
Nix
{ self, ... }: {
|
|
flake.homeManagerModules.wisdomBrowsersEdge = self.lib.wisdomSlice {
|
|
path = "browsers.edge";
|
|
default = false;
|
|
description = "Edge (unfree); skipped if unavailable on this platform.";
|
|
packages = pkgs: [ pkgs.microsoft-edge ];
|
|
};
|
|
}
|