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
279 B
Nix
9 lines
279 B
Nix
{ self, ... }: {
|
|
flake.homeManagerModules.wisdomAppsPokeclicker = self.lib.wisdomSlice {
|
|
path = "apps.pokeclicker";
|
|
default = false;
|
|
description = "PokéClicker desktop (Farigh fork .deb → nix).";
|
|
packages = pkgs: [ (pkgs.callPackage ./package { }) ];
|
|
};
|
|
}
|