1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-01 06:31:04 +01:00
home-manager/tests/modules/services/cachix-agent/basic-setup.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

25 lines
603 B
Nix

{
services.cachix-agent = {
enable = true;
name = "test-agent";
};
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@/bin/cachix deploy agent test-agent home-manager
KillMode=process
Restart=on-failure
[Unit]
Description=Cachix Deploy Agent
''}
'';
}