mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
19 lines
430 B
Nix
19 lines
430 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
home.username = lib.mkForce "root";
|
|
|
|
systemd.user.services."test-service@" = {
|
|
Unit = { Description = "A basic test service"; };
|
|
|
|
Service = {
|
|
Environment = [ "VAR1=1" "VAR2=2" ];
|
|
ExecStart = ''/some/exec/start/command --with-arguments "%i"'';
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
serviceFile=home-files/.config/systemd/user/test-service@.service
|
|
assertPathNotExists $serviceFile
|
|
'';
|
|
}
|