mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 23:21:02 +01:00
- Add custom-target.nix test for custom systemd target configuration Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
14 lines
273 B
Nix
14 lines
273 B
Nix
{
|
|
config = {
|
|
services.arrpc = {
|
|
enable = true;
|
|
systemdTarget = "sway-session.target";
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.config/systemd/user/arRPC.service \
|
|
${./custom-target-expected.service}
|
|
'';
|
|
};
|
|
}
|