Use conventional Nix formatting

Also always end comments with a full stop, and bump package versions.
This commit is contained in:
Reinout Meliesie 2026-04-29 16:09:15 +02:00
commit 99885b2be2
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6
4 changed files with 36 additions and 36 deletions

View file

@ -1,21 +1,21 @@
{ pkgs , ... } :
{ pkgs, ... }:
with pkgs ;
with pkgs;
{
nixpkgs = {
overlays = [
( self : super : {
( 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
) {} ;
) {};
} )
] ;
} ;
})
];
};
}