use newer nix-janitor

This commit is contained in:
Gerg-L 2024-06-05 22:54:05 -04:00
parent cc12240ed8
commit 6f61e69bff
Signed by: gerg-l
SSH key fingerprint: SHA256:FPYDHIkvMocr4wdmZXpgpJjsb2Tw6rASs2ISPbOb0KI
2 changed files with 11 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{ _file }: { _file, self }:
{ {
lib, lib,
config, config,
@ -32,8 +32,8 @@
nix-output-monitor # nom nom nom nom; nix-output-monitor # nom nom nom nom;
nix-tree # view packages nix-tree # view packages
pciutils # lspci pciutils # lspci
nix-janitor # thanks nobbz
; ;
inherit (self.packages) nix-janitor;
} }
); );

View file

@ -0,0 +1,9 @@
{ nix-janitor, fetchFromGitHub }:
nix-janitor.overrideAttrs {
src = fetchFromGitHub {
owner = "NobbZ";
repo = "nix-janitor";
rev = "d49fd7486d5597d2e854154bf643e7f86c5f1f6c";
hash = "sha256-KRXz2qUDWmyglXk56jL0twOQ3pWdpacddyVn95W7wl0=";
};
}