mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
17 lines
313 B
Nix
17 lines
313 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
services.snixembed = {
|
||
|
enable = true;
|
||
|
beforeUnits = [ "safeeyes.service" ];
|
||
|
};
|
||
|
|
||
|
test.stubs = { snixembed = { outPath = "/snixembed"; }; };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileContent \
|
||
|
home-files/.config/systemd/user/snixembed.service \
|
||
|
${./basic-configuration.service}
|
||
|
'';
|
||
|
}
|