linux-utils/nixos-module.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
) {} ;
} )
] ;
} ;
}