Files
nur/pkgs/default.nix
T

30 lines
1020 B
Nix
Raw Normal View History

2026-08-31 13:51:35 -04:00
{
2026-08-11 14:27:08 -04:00
pkgs,
hildibrand ? null,
2026-08-31 13:51:35 -04:00
caitsith ? null,
2026-08-11 14:27:08 -04:00
}:
2026-05-29 15:44:32 -04:00
{
2026-09-02 13:21:30 -04:00
# any overlays we define here
2026-08-09 14:46:33 -04:00
atuinLatest = pkgs.atuinLatest;
2026-09-02 13:21:30 -04:00
containerLatest = pkgs.containerLatest;
2026-09-02 13:41:37 -04:00
cliampLatest = pkgs.cliampLatest;
lazygitLatest = pkgs.lazygitLatest;
ghDashLatest = pkgs.ghDashLatest;
diffNavLatest = pkgs.diffNavLatest;
k9sLatest = pkgs.k9sLatest;
2026-09-02 13:21:30 -04:00
2026-08-09 15:38:24 -04:00
# any packages that are added to pkgs and are inputs, we inherit them here
inherit hildibrand;
2026-08-11 14:27:08 -04:00
inherit caitsith;
2026-08-09 15:38:24 -04:00
# any packages that build instructions are in this repo, they go here
2026-05-25 17:17:47 -04:00
# sable-web = pkgs.callPackage ./common/sable.nix {};
2026-08-09 14:46:33 -04:00
swaytreesave = pkgs.callPackage ./linux/swaytreesave.nix { };
musicpresence = pkgs.callPackage ./linux/musicpresence.nix { };
vintage-story = pkgs.callPackage ./linux/vintage-story.nix { };
archon = pkgs.callPackage ./linux/archon.nix { };
2026-05-29 15:44:32 -04:00
yubilock = pkgs.callPackage ./linux/yubilock/default.nix { };
2026-08-09 13:35:28 -04:00
ani-cli-rs = pkgs.callPackage ./linux/ani-cli-rs.nix { };
2026-08-31 13:51:35 -04:00
opengoal = pkgs.callPackage ./linux/opengoal.nix { };
2026-05-21 08:41:07 -04:00
}