1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/tests/modules/services/cachix-agent/basic-setup.nix
2022-12-25 09:54:43 +01:00

33 lines
777 B
Nix

{ 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
''
}
'';
}