mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 20:55:31 +03:00
nixos/shellhub-agent: initial service expression
This provides the service to configure the ShellHub Agent. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
This commit is contained in:
parent
f5d54c88ed
commit
06edbabe06
2 changed files with 92 additions and 0 deletions
|
@ -742,6 +742,7 @@
|
||||||
./services/networking/skydns.nix
|
./services/networking/skydns.nix
|
||||||
./services/networking/shadowsocks.nix
|
./services/networking/shadowsocks.nix
|
||||||
./services/networking/shairport-sync.nix
|
./services/networking/shairport-sync.nix
|
||||||
|
./services/networking/shellhub-agent.nix
|
||||||
./services/networking/shorewall.nix
|
./services/networking/shorewall.nix
|
||||||
./services/networking/shorewall6.nix
|
./services/networking/shorewall6.nix
|
||||||
./services/networking/shout.nix
|
./services/networking/shout.nix
|
||||||
|
|
91
nixos/modules/services/networking/shellhub-agent.nix
Normal file
91
nixos/modules/services/networking/shellhub-agent.nix
Normal file
|
@ -0,0 +1,91 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.services.shellhub-agent;
|
||||||
|
in {
|
||||||
|
|
||||||
|
###### interface
|
||||||
|
|
||||||
|
options = {
|
||||||
|
|
||||||
|
services.shellhub-agent = {
|
||||||
|
|
||||||
|
enable = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = ''
|
||||||
|
Whether to enable the ShellHub Agent daemon, which allows
|
||||||
|
secure remote logins.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
package = mkOption {
|
||||||
|
type = types.package;
|
||||||
|
default = pkgs.shellhub-agent;
|
||||||
|
defaultText = "pkgs.shellhub-agent";
|
||||||
|
description = ''
|
||||||
|
Which ShellHub Agent package to use.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
tenantId = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
example = "ba0a880c-2ada-11eb-a35e-17266ef329d6";
|
||||||
|
description = ''
|
||||||
|
The tenant ID to use when connecting to the ShellHub
|
||||||
|
Gateway.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
server = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "https://cloud.shellhub.io";
|
||||||
|
description = ''
|
||||||
|
Server address of ShellHub Gateway to connect.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
privateKey = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "/var/lib/shellhub-agent/private.key";
|
||||||
|
description = ''
|
||||||
|
Location where to store the ShellHub Agent private
|
||||||
|
key.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
###### implementation
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
|
systemd.services.shellhub-agent = {
|
||||||
|
description = "ShellHub Agent";
|
||||||
|
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
requires = [ "local-fs.target" ];
|
||||||
|
wants = [ "network-online.target" ];
|
||||||
|
after = [
|
||||||
|
"local-fs.target"
|
||||||
|
"network.target"
|
||||||
|
"network-online.target"
|
||||||
|
"time-sync.target"
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.SERVER_ADDRESS = cfg.server;
|
||||||
|
environment.PRIVATE_KEY = cfg.privateKey;
|
||||||
|
environment.TENANT_ID = cfg.tenantId;
|
||||||
|
|
||||||
|
serviceConfig = {
|
||||||
|
# The service starts sessions for different users.
|
||||||
|
User = "root";
|
||||||
|
Restart = "on-failure";
|
||||||
|
ExecStart = "${cfg.package}/bin/agent";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = [ cfg.package ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue