nixos-config/pkgs/default.nix

15 lines
294 B
Nix
Raw Permalink Normal View History

2019-10-24 02:20:38 +02:00
# This overlay extends nixpkgs .
self: super:
2022-05-25 19:39:51 +02:00
let callPackage = super.pkgs.callPackage;
2019-10-24 02:20:38 +02:00
2019-12-20 05:54:26 +01:00
in {
2020-02-14 19:06:43 +01:00
2019-12-20 05:54:26 +01:00
otpmenu = callPackage ./otpmenu { };
2023-06-29 10:08:09 +02:00
#sononym = callPackage ./sononym { };
#sononym-crawler = callPackage ./sononym-crawler { };
taskwarrior-hooks = callPackage ./taskwarrior-hooks { };
2021-05-02 05:11:07 +02:00
2019-10-24 02:20:38 +02:00
}