linux-utils/nixos-module.nix

21 lines
320 B
Nix
Raw Normal View History

{ pkgs, ... }:
with pkgs;
2025-03-04 12:29:13 +01:00
{
nixpkgs = {
overlays = [
( 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
) {};
})
];
};
}