mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
glances added
This commit is contained in:
@@ -4,9 +4,9 @@
|
|||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
# ../containers/remnawave.nix
|
|
||||||
../software/beets
|
../software/beets
|
||||||
./calibre-web.nix
|
./calibre-web.nix
|
||||||
|
./glances.nix
|
||||||
./immich.nix
|
./immich.nix
|
||||||
./miniflux.nix
|
./miniflux.nix
|
||||||
./n8n.nix
|
./n8n.nix
|
||||||
@@ -21,6 +21,7 @@
|
|||||||
./systemd.nix
|
./systemd.nix
|
||||||
./transmission.nix
|
./transmission.nix
|
||||||
./uptime-kuma.nix
|
./uptime-kuma.nix
|
||||||
|
# ../containers/remnawave.nix
|
||||||
# ./mealie.nix
|
# ./mealie.nix
|
||||||
# ./memos.nix
|
# ./memos.nix
|
||||||
# ./nfs.nix
|
# ./nfs.nix
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
services = {
|
||||||
|
glances = {
|
||||||
|
enable = true;
|
||||||
|
openFirewall = true;
|
||||||
|
port = 61208;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -7,7 +7,8 @@
|
|||||||
../containers/3x-ui.nix
|
../containers/3x-ui.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
./samba.nix
|
./samba.nix
|
||||||
# ./xray.nix
|
# ./glances.nix
|
||||||
# ./netbird.nix
|
# ./netbird.nix
|
||||||
|
# ./xray.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
services = {
|
||||||
|
glances = {
|
||||||
|
enable = true;
|
||||||
|
openFirewall = true;
|
||||||
|
port = 61208;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user