added prometheus
Some checks failed
/ Check formatting (push) Failing after 1m50s

This commit is contained in:
Ittihadyya 2024-12-20 13:12:54 +02:00
parent 66fe419c0f
commit 3b3bbb61c3
3 changed files with 14 additions and 2 deletions

View file

@ -66,7 +66,7 @@
{ {
nixpkgs.overlays = [ nixpkgs.overlays = [
(final: prev: { (final: prev: {
# beeref = final.callPackage ./beeref.nix {}; # I'M GOING TO TRUNCATE *YOU*, BEEREF. # beeref = final.callPackage ./beeref.nix {}; # I'M GOING TO TRUNCATE *YOU*, BEEREF.
}) })
]; ];
} }

View file

@ -18,7 +18,7 @@
darktable darktable
obs-studio obs-studio
# pureref # not updated on nixpkgs apparently # pureref # not updated on nixpkgs apparently
# beeref # straight up doesn't work # beeref # straight up doesn't work
]; ];
} }
) )

View file

@ -0,0 +1,12 @@
{
glucose.modules = [
{(
services.prometheus = {
enable = true;
port = 6750;
enableReload = true;
};
)}
];
}