mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
22 lines
294 B
Nix
22 lines
294 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
xlib,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
services.uptime-kuma = {
|
|
enable = true;
|
|
settings = {
|
|
PORT = "4001";
|
|
HOST = "0.0.0.0";
|
|
};
|
|
};
|
|
|
|
# systemd.tmpfiles.rules = [
|
|
# "z ${xlib.dirs.services-mnt-folder}/node-red 0750 node-red node-red -"
|
|
# ];
|
|
}
|