0939766e3a
Replace manual Home Manager module definitions in `localsend`, `pokeclicker`, and `flow-browser` with the `wisdomSimpleSlice` helper. This reduces boilerplate by centralizing the option declaration and configuration logic.
9 lines
285 B
Nix
9 lines
285 B
Nix
{ self, ... }: {
|
|
flake.homeManagerModules.wisdomAppsPokeclicker = self.lib.wisdomSimpleSlice {
|
|
path = "apps.pokeclicker";
|
|
default = false;
|
|
description = "PokéClicker desktop (Farigh fork .deb → nix).";
|
|
packages = pkgs: [ (pkgs.callPackage ./package { }) ];
|
|
};
|
|
}
|