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