cachix-agent: add module
This commit is contained in:
parent
d7eee202e5
commit
939731b8cb
|
@ -861,6 +861,14 @@ in
|
||||||
A new module is available: 'services.megasync'.
|
A new module is available: 'services.megasync'.
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
time = "2022-12-25T08:41:32+00:00";
|
||||||
|
condition = hostPlatform.isLinux;
|
||||||
|
message = ''
|
||||||
|
A new module is available: 'services.cachix-agent'.
|
||||||
|
'';
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -204,6 +204,7 @@ let
|
||||||
./services/betterlockscreen.nix
|
./services/betterlockscreen.nix
|
||||||
./services/blueman-applet.nix
|
./services/blueman-applet.nix
|
||||||
./services/borgmatic.nix
|
./services/borgmatic.nix
|
||||||
|
./services/cachix-agent.nix
|
||||||
./services/caffeine.nix
|
./services/caffeine.nix
|
||||||
./services/cbatticon.nix
|
./services/cbatticon.nix
|
||||||
./services/clipmenu.nix
|
./services/clipmenu.nix
|
||||||
|
|
84
modules/services/cachix-agent.nix
Normal file
84
modules/services/cachix-agent.nix
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
|
||||||
|
cfg = config.services.cachix-agent;
|
||||||
|
|
||||||
|
in {
|
||||||
|
meta.maintainers = [ maintainers.rycee ];
|
||||||
|
|
||||||
|
options.services.cachix-agent = {
|
||||||
|
enable = mkEnableOption ''
|
||||||
|
Cachix Deploy Agent: <link xlink:href="https://docs.cachix.org/deploy/"/>'';
|
||||||
|
|
||||||
|
name = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
description = "The unique agent name.";
|
||||||
|
};
|
||||||
|
|
||||||
|
verbose = mkEnableOption "verbose output";
|
||||||
|
|
||||||
|
profile = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "home-manager";
|
||||||
|
description = ''
|
||||||
|
The Nix profile name.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
host = mkOption {
|
||||||
|
type = types.nullOr types.str;
|
||||||
|
default = null;
|
||||||
|
description = "Cachix URI to use.";
|
||||||
|
};
|
||||||
|
|
||||||
|
package = mkPackageOption pkgs "cachix" { };
|
||||||
|
|
||||||
|
credentialsFile = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "${config.xdg.configHome}/cachix-agent.token";
|
||||||
|
defaultText =
|
||||||
|
literalExpression ''"''${config.xdg.configHome}/cachix-agent.token"'';
|
||||||
|
description = ''
|
||||||
|
Required file that needs to contain
|
||||||
|
<literal>CACHIX_AGENT_TOKEN=...</literal>.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
assertions = [
|
||||||
|
(lib.hm.assertions.assertPlatform "services.cachix-agent" pkgs
|
||||||
|
lib.platforms.linux)
|
||||||
|
];
|
||||||
|
|
||||||
|
systemd.user.services.cachix-agent = {
|
||||||
|
Unit.Description = "Cachix Deploy Agent";
|
||||||
|
|
||||||
|
Service = {
|
||||||
|
Environment = [
|
||||||
|
"PATH=${
|
||||||
|
if config.nix.enable && config.nix.package != null then
|
||||||
|
config.nix.package
|
||||||
|
else
|
||||||
|
pkgs.nix
|
||||||
|
}/bin"
|
||||||
|
];
|
||||||
|
EnvironmentFile = cfg.credentialsFile;
|
||||||
|
|
||||||
|
# We don't want to kill children processes as those are deployments.
|
||||||
|
KillMode = "process";
|
||||||
|
Restart = "on-failure";
|
||||||
|
ExecStart = escapeShellArgs ([ "${cfg.package}/bin/cachix" ]
|
||||||
|
++ optional cfg.verbose "--verbose"
|
||||||
|
++ optional (cfg.host != null) "--host ${cfg.host}"
|
||||||
|
++ [ "deploy" "agent" cfg.name ]
|
||||||
|
++ optional (cfg.profile != null) cfg.profile);
|
||||||
|
};
|
||||||
|
|
||||||
|
Install.WantedBy = [ "default.target" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -166,6 +166,7 @@ import nmt {
|
||||||
./modules/programs/yt-dlp
|
./modules/programs/yt-dlp
|
||||||
./modules/services/barrier
|
./modules/services/barrier
|
||||||
./modules/services/borgmatic
|
./modules/services/borgmatic
|
||||||
|
./modules/services/cachix-agent
|
||||||
./modules/services/devilspie2
|
./modules/services/devilspie2
|
||||||
./modules/services/dropbox
|
./modules/services/dropbox
|
||||||
./modules/services/emacs
|
./modules/services/emacs
|
||||||
|
|
32
tests/modules/services/cachix-agent/basic-setup.nix
Normal file
32
tests/modules/services/cachix-agent/basic-setup.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{ config, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.cachix-agent = {
|
||||||
|
enable = true;
|
||||||
|
package = config.lib.test.mkStubPackage { outPath = "@cachix-agent@"; };
|
||||||
|
name = "test-agent";
|
||||||
|
};
|
||||||
|
|
||||||
|
test.stubs.nix = { };
|
||||||
|
|
||||||
|
nmt.script = ''
|
||||||
|
assertFileContent \
|
||||||
|
home-files/.config/systemd/user/cachix-agent.service \
|
||||||
|
${
|
||||||
|
builtins.toFile "cachix-agent.service" ''
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Environment=PATH=@nix@/bin
|
||||||
|
EnvironmentFile=/home/hm-user/.config/cachix-agent.token
|
||||||
|
ExecStart='@cachix-agent@/bin/cachix' 'deploy' 'agent' 'test-agent' 'home-manager'
|
||||||
|
KillMode=process
|
||||||
|
Restart=on-failure
|
||||||
|
|
||||||
|
[Unit]
|
||||||
|
Description=Cachix Deploy Agent
|
||||||
|
''
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
}
|
1
tests/modules/services/cachix-agent/default.nix
Normal file
1
tests/modules/services/cachix-agent/default.nix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{ cachix = ./basic-setup.nix; }
|
Loading…
Reference in a new issue