mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
23 lines
493 B
Nix
23 lines
493 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
systemd.user.services."test-service@" = {
|
|
Unit = {
|
|
Description = "A basic test service";
|
|
};
|
|
|
|
Service = {
|
|
ExecStart = ''/some/exec/start/command --with-arguments "%i"'';
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
local serviceFile=home-files/.config/systemd/user/test-service@.service
|
|
assertFileExists $serviceFile
|
|
assertFileContent $serviceFile ${./services-expected.conf}
|
|
'';
|
|
};
|
|
}
|