21 lines
330 B
Nix
21 lines
330 B
Nix
{ pkgs , ... } :
|
|
|
|
with pkgs ;
|
|
|
|
{
|
|
nixpkgs = {
|
|
overlays = [
|
|
( self : super : {
|
|
|
|
journalctl-last-invocation = callPackage (
|
|
import packages/journalctl-last-invocation/package.nix
|
|
) {} ;
|
|
|
|
nix-store-fuzzy-find = callPackage (
|
|
import packages/nix-store-fuzzy-find/package.nix
|
|
) {} ;
|
|
|
|
} )
|
|
] ;
|
|
} ;
|
|
}
|