linux-utils/nixos-module.nix

21 lines
330 B
Nix
Raw Normal View History

2025-03-04 13:21:29 +01:00
{ pkgs , ... } :
2025-03-04 12:29:13 +01:00
with pkgs ;
{
nixpkgs = {
overlays = [
2025-03-04 12:38:48 +01:00
( self : super : {
journalctl-last-invocation = callPackage (
import packages/journalctl-last-invocation/package.nix
) {} ;
2025-03-04 12:38:48 +01:00
nix-store-fuzzy-find = callPackage (
import packages/nix-store-fuzzy-find/package.nix
) {} ;
2025-03-04 12:38:48 +01:00
} )
] ;
} ;
}