This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/pkgs/default.nix
James Patrick 3433f4a7e2 Added battery notify (currently don't work)
I'm fighting with udev to get it work properly.
2022-04-24 22:24:53 -04:00

7 lines
303 B
Nix

self: super: {
brightness-sh = super.callPackage ./brightness.nix { inherit super; };
battery-notify = super.callPackage ./battery-notify.nix { inherit super; };
sway-entry = super.callPackage ./sway-entry.nix { inherit super; };
volume-sh = super.callPackage ./volume.nix { inherit super; };
}