glances added

This commit is contained in:
2026-04-11 11:44:16 +03:00
parent f5c6d40c89
commit 7f1f714e8c
4 changed files with 34 additions and 2 deletions
+2 -1
View File
@@ -4,9 +4,9 @@
}:
{
imports = [
# ../containers/remnawave.nix
../software/beets
./calibre-web.nix
./glances.nix
./immich.nix
./miniflux.nix
./n8n.nix
@@ -21,6 +21,7 @@
./systemd.nix
./transmission.nix
./uptime-kuma.nix
# ../containers/remnawave.nix
# ./mealie.nix
# ./memos.nix
# ./nfs.nix
+15
View File
@@ -0,0 +1,15 @@
{
config,
lib,
pkgs,
...
}:
{
services = {
glances = {
enable = true;
openFirewall = true;
port = 61208;
};
};
}
+2 -1
View File
@@ -7,7 +7,8 @@
../containers/3x-ui.nix
./nginx.nix
./samba.nix
# ./xray.nix
# ./glances.nix
# ./netbird.nix
# ./xray.nix
];
}
+15
View File
@@ -0,0 +1,15 @@
{
config,
lib,
pkgs,
...
}:
{
services = {
glances = {
enable = true;
openFirewall = true;
port = 61208;
};
};
}