linux-utils/nixos-module.nix
Reinout Meliesie 99885b2be2
Use conventional Nix formatting
Also always end comments with a full stop, and bump package versions.
2026-04-29 16:09:15 +02:00

21 lines
320 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
) {};
})
];
};
}