forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
105 changed files
with
2,745 additions
and
4,708 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4134,6 +4134,12 @@ | |
githubId = 43564; | ||
name = "Claes Holmerson"; | ||
}; | ||
claha = { | ||
email = "[email protected]"; | ||
github = "claha"; | ||
githubId = 9336788; | ||
name = "Claes Hallström"; | ||
}; | ||
clebs = { | ||
email = "[email protected]"; | ||
github = "clebs"; | ||
|
@@ -24175,7 +24181,7 @@ | |
githubId = 47071325; | ||
}; | ||
ymstnt = { | ||
name = "YMSTNT"; | ||
name = "ymstnt"; | ||
github = "ymstnt"; | ||
githubId = 21342713; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Glances {#module-serives-glances} | ||
|
||
Glances an Eye on your system. A top/htop alternative for GNU/Linux, BSD, Mac OS | ||
and Windows operating systems. | ||
|
||
Visit [the Glances project page](https://github.com/nicolargo/glances) to learn | ||
more about it. | ||
|
||
# Quickstart {#module-serives-glances-quickstart} | ||
|
||
Use the following configuration to start a public instance of Glances locally: | ||
|
||
```nix | ||
{ | ||
services.glances = { | ||
enable = true; | ||
openFirewall = true; | ||
}; | ||
}; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
{ | ||
pkgs, | ||
config, | ||
lib, | ||
utils, | ||
... | ||
}: | ||
let | ||
cfg = config.services.glances; | ||
|
||
inherit (lib) | ||
getExe | ||
maintainers | ||
mkEnableOption | ||
mkOption | ||
mkIf | ||
mkPackageOption | ||
; | ||
|
||
inherit (lib.types) | ||
bool | ||
listOf | ||
port | ||
str | ||
; | ||
|
||
inherit (utils) | ||
escapeSystemdExecArgs | ||
; | ||
|
||
in | ||
{ | ||
options.services.glances = { | ||
enable = mkEnableOption "Glances"; | ||
|
||
package = mkPackageOption pkgs "glances" { }; | ||
|
||
port = mkOption { | ||
description = "Port the server will isten on."; | ||
type = port; | ||
default = 61208; | ||
}; | ||
|
||
openFirewall = mkOption { | ||
description = "Open port in the firewall for glances."; | ||
type = bool; | ||
default = false; | ||
}; | ||
|
||
extraArgs = mkOption { | ||
type = listOf str; | ||
default = [ "--webserver" ]; | ||
example = [ | ||
"--webserver" | ||
"--disable-webui" | ||
]; | ||
description = '' | ||
Extra command-line arguments to pass to glances. | ||
See https://glances.readthedocs.io/en/latest/cmds.html for all available options. | ||
''; | ||
}; | ||
}; | ||
|
||
config = mkIf cfg.enable { | ||
|
||
environment.systemPackages = [ cfg.package ]; | ||
|
||
systemd.services."glances" = { | ||
description = "Glances"; | ||
after = [ "network.target" ]; | ||
wantedBy = [ "multi-user.target" ]; | ||
|
||
serviceConfig = { | ||
Type = "simple"; | ||
DynamicUser = true; | ||
ExecStart = "${getExe cfg.package} --port ${toString cfg.port} ${escapeSystemdExecArgs cfg.extraArgs}"; | ||
Restart = "on-failure"; | ||
|
||
NoNewPrivileges = true; | ||
ProtectSystem = "full"; | ||
ProtectHome = true; | ||
PrivateTmp = true; | ||
PrivateDevices = true; | ||
ProtectKernelTunables = true; | ||
ProtectKernelModules = true; | ||
ProtectKernelLogs = true; | ||
ProtectControlGroups = true; | ||
MemoryDenyWriteExecute = true; | ||
RestrictAddressFamilies = [ | ||
"AF_INET" | ||
"AF_INET6" | ||
"AF_NETLINK" | ||
"AF_UNIX" | ||
]; | ||
LockPersonality = true; | ||
RestrictRealtime = true; | ||
ProtectClock = true; | ||
ReadWritePaths = [ "/var/log" ]; | ||
CapabilityBoundingSet = [ "CAP_NET_BIND_SERVICE" ]; | ||
AmbientCapabilities = [ "CAP_NET_BIND_SERVICE" ]; | ||
SystemCallFilter = [ "@system-service" ]; | ||
}; | ||
}; | ||
|
||
networking.firewall.allowedTCPPorts = mkIf cfg.openFirewall [ cfg.port ]; | ||
}; | ||
|
||
meta.maintainers = with maintainers; [ claha ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ lib, ... }: | ||
|
||
{ | ||
name = "glances"; | ||
|
||
nodes = { | ||
machine_default = | ||
{ pkgs, ... }: | ||
{ | ||
services.glances = { | ||
enable = true; | ||
}; | ||
}; | ||
|
||
machine_custom_port = | ||
{ pkgs, ... }: | ||
{ | ||
services.glances = { | ||
enable = true; | ||
port = 5678; | ||
}; | ||
}; | ||
}; | ||
|
||
testScript = '' | ||
machine_default.start() | ||
machine_default.wait_for_unit("glances.service") | ||
machine_default.wait_for_open_port(61208) | ||
machine_custom_port.start() | ||
machine_custom_port.wait_for_unit("glances.service") | ||
machine_custom_port.wait_for_open_port(5678) | ||
''; | ||
|
||
meta.maintainers = [ lib.maintainers.claha ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.