Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 450 Bytes

File metadata and controls

27 lines (19 loc) · 450 Bytes

monitoring

Nixpkgs overlay containing modules and packages dedicated to system monitoring.

Usage

Use the Nix modules in this repository by importing it in your configuration.nix as follows:

let

  monitoring = builtins.fetchGit {
    url = "https://github.com/senpro-it/monitoring.git";
    ref = "main";
    rev = "<commit-hash>";
  };

in {

  imports = [
    "${monitoring}/nixos"
    ./hardware-configuration.nix
  ];

  ...

}