stop mc server

update nix-janitor and nix

update lockfile

fix nerd-fonts
This commit is contained in:
Gerg-L 2024-11-30 15:40:26 -05:00
parent b7e24442ec
commit 9bec2ed262
Signed by: gerg-l
SSH key fingerprint: SHA256:FPYDHIkvMocr4wdmZXpgpJjsb2Tw6rASs2ISPbOb0KI
6 changed files with 68 additions and 107 deletions

View file

@ -32,7 +32,15 @@
nix-tree # view packages
pciutils # lspci
;
inherit (nix-janitor.packages) default;
nix-janitor = pkgs.symlinkJoin {
name = "nix-janitor";
paths = [ nix-janitor.packages.default ];
nativeBuildInputs = [ pkgs.makeBinaryWrapper ];
postBuild = ''
wrapProgram "$out/bin/janitor" \
--suffix PATH : ${lib.makeBinPath [ config.nix.package ]}
'';
};
}
);