mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 11:22:23 +00:00
13 lines
584 B
Nix
13 lines
584 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 {};
|
|
}
|