mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 15:11:34 +01:00
gatus: Minor code cleanup
This commit is contained in:
parent
ac48782b56
commit
aa7cd9f8db
1 changed files with 2 additions and 2 deletions
|
|
@ -139,7 +139,7 @@ in
|
||||||
settings = {
|
settings = {
|
||||||
web = {
|
web = {
|
||||||
address = "localhost";
|
address = "localhost";
|
||||||
port = cfg.port;
|
inherit (cfg) port;
|
||||||
};
|
};
|
||||||
storage = {
|
storage = {
|
||||||
type = "sqlite";
|
type = "sqlite";
|
||||||
|
|
@ -199,7 +199,7 @@ in
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
cfg.endpoints |> lib.attrValues |> lib.map (entry: mkEndpoint entry);
|
cfg.endpoints |> lib.attrValues |> lib.map mkEndpoint;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue