11 lines
203 B
Nix
11 lines
203 B
Nix
final: prev:
|
|
let
|
|
call = prev.callPackage;
|
|
in
|
|
{
|
|
customscripts = call ./customscripts { };
|
|
tlauncher = call ./tlauncher { };
|
|
simp1e-cursors = call ./simp1e { };
|
|
nattovim = call ./nattovim { };
|
|
}
|