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
303 B
Nix
9 lines
303 B
Nix
{ self, ... }: {
|
|
flake.homeManagerModules.wisdomBrowsersChrome = self.lib.wisdomSlice {
|
|
path = "browsers.chrome";
|
|
default = false;
|
|
description = "Chrome (unfree, needs `allowUnfree`); skipped if nixpkgs has no build for this platform.";
|
|
packages = pkgs: [ pkgs.google-chrome ];
|
|
};
|
|
}
|