1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-30 18:38:31 +02:00
home-manager/tests/modules/systemd/services-disabled-for-root.nix

20 lines
430 B
Nix
Raw Normal View History

2023-05-13 00:08:12 +02:00
{ lib, ... }:
{
2023-05-13 00:08:12 +02:00
home.username = lib.mkForce "root";
2023-05-13 00:08:12 +02:00
systemd.user.services."test-service@" = {
Unit = { Description = "A basic test service"; };
2023-05-13 00:08:12 +02:00
Service = {
Environment = [ "VAR1=1" "VAR2=2" ];
ExecStart = ''/some/exec/start/command --with-arguments "%i"'';
};
};
2023-05-13 00:08:12 +02:00
nmt.script = ''
serviceFile=home-files/.config/systemd/user/test-service@.service
assertPathNotExists $serviceFile
'';
}