Merge pull request #155009 from domenkozar/cachix-agent
nixos: add cachix-agent service
This commit is contained in:
commit
54fcd869d8
@ -968,6 +968,7 @@
|
|||||||
./services/security/vault.nix
|
./services/security/vault.nix
|
||||||
./services/security/vaultwarden/default.nix
|
./services/security/vaultwarden/default.nix
|
||||||
./services/security/yubikey-agent.nix
|
./services/security/yubikey-agent.nix
|
||||||
|
./services/system/cachix-agent/default.nix
|
||||||
./services/system/cloud-init.nix
|
./services/system/cloud-init.nix
|
||||||
./services/system/dbus.nix
|
./services/system/dbus.nix
|
||||||
./services/system/earlyoom.nix
|
./services/system/earlyoom.nix
|
||||||
|
57
nixos/modules/services/system/cachix-agent/default.nix
Normal file
57
nixos/modules/services/system/cachix-agent/default.nix
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.services.cachix-agent;
|
||||||
|
in {
|
||||||
|
meta.maintainers = [ lib.maintainers.domenkozar ];
|
||||||
|
|
||||||
|
options.services.cachix-agent = {
|
||||||
|
enable = mkEnableOption "Cachix Deploy Agent: https://docs.cachix.org/deploy/";
|
||||||
|
|
||||||
|
name = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
description = "Agent name, usually same as the hostname";
|
||||||
|
default = config.networking.hostName;
|
||||||
|
defaultText = "config.networking.hostName";
|
||||||
|
};
|
||||||
|
|
||||||
|
profile = mkOption {
|
||||||
|
type = types.nullOr types.str;
|
||||||
|
default = null;
|
||||||
|
description = "Profile name, defaults to 'system' (NixOS).";
|
||||||
|
};
|
||||||
|
|
||||||
|
package = mkOption {
|
||||||
|
type = types.package;
|
||||||
|
default = pkgs.cachix;
|
||||||
|
defaultText = literalExpression "pkgs.cachix";
|
||||||
|
description = "Cachix Client package to use.";
|
||||||
|
};
|
||||||
|
|
||||||
|
credentialsFile = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "/etc/cachix-agent.token";
|
||||||
|
description = ''
|
||||||
|
Required file that needs to contain CACHIX_AGENT_TOKEN=...
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
systemd.services.cachix-agent = {
|
||||||
|
description = "Cachix Deploy Agent";
|
||||||
|
after = ["network-online.target"];
|
||||||
|
path = [ config.nix.package ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
# don't restart while changing
|
||||||
|
reloadIfChanged = true;
|
||||||
|
serviceConfig = {
|
||||||
|
Restart = "on-failure";
|
||||||
|
EnvironmentFile = cfg.credentialsFile;
|
||||||
|
ExecStart = "${cfg.package}/bin/cachix deploy agent ${cfg.name} ${if cfg.profile != null then profile else ""}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user