📦 install healthchecks package

This commit is contained in:
Ingolf Wagner 2025-02-19 13:47:32 +07:00
parent 5cf4010bcf
commit 8beb5617d4
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B
2 changed files with 5 additions and 3 deletions

6
flake.lock generated
View file

@ -595,11 +595,11 @@
"treefmt-nix": "treefmt-nix_2" "treefmt-nix": "treefmt-nix_2"
}, },
"locked": { "locked": {
"lastModified": 1739598659, "lastModified": 1739943981,
"narHash": "sha256-HcR9D2T1EZyb4l83UIodxqbxe+hE+ahseWuW3+Mg+Uw=", "narHash": "sha256-TUh8qjyr7ql56kBzHgkKUGtgVjtfd6lOym2uxouRYBI=",
"owner": "mrvandalo", "owner": "mrvandalo",
"repo": "nixos-healthchecks", "repo": "nixos-healthchecks",
"rev": "91d79a446bc2e0bab83731bda4b64aa9992e04bd", "rev": "5997ffc78fa1d8eee84818fe899cd7f0f8cb0644",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -150,6 +150,7 @@
tasksh tasksh
taskwarrior-hooks taskwarrior-hooks
; ;
healthchecks = self.packages.${system}.healthchecks;
inherit (self.packages.${system}) inherit (self.packages.${system})
otpmenu otpmenu
nsxiv nsxiv
@ -308,6 +309,7 @@
boot.loader.grub.configurationLimit = lib.mkDefault 10; boot.loader.grub.configurationLimit = lib.mkDefault 10;
environment.systemPackages = [ environment.systemPackages = [
pkgs.systemctl-find-service-config pkgs.systemctl-find-service-config
pkgs.healthchecks
]; ];
} }
) )