mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 19:32:24 +00:00
14 lines
652 B
Nix
14 lines
652 B
Nix
let
|
|
sources = import ../nix/sources.nix;
|
|
in
|
|
self: super: {
|
|
alacritty = super.callPackage ../packages/alacritty-overlay.nix { alacritty = super.alacritty; };
|
|
bashtop = super.callPackage ../packages/bashtop.nix { };
|
|
boox = super.callPackage ../packages/boox.nix { };
|
|
cool-retro-term = super.callPackage ./cool-retro-term.nix { cool-retro-term = super.cool-retro-term; };
|
|
liquidctl = super.callPackage ../packages/liquidctl.nix { };
|
|
mmutils = super.callPackage ../packages/mmutils.nix { };
|
|
nixGL = import sources.nixGL { };
|
|
scr = super.callPackage ../packages/scr.nix { };
|
|
my-st = super.callPackage ../packages/st/st-tanish2002 { };
|
|
}
|