mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
28eb093a1e
This causes list values to be emitted as a list of key-value pairs instead of a single key-value pair where the value is space separated. This is useful, e.g., for socket units that would like to specify more than one `ListenStream=` address.
33 lines
778 B
Nix
33 lines
778 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
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
|
|
assertFileExists $serviceFile
|
|
assertFileContent $serviceFile \
|
|
${builtins.toFile "services-expected.conf" ''
|
|
[Service]
|
|
Environment=VAR1=1
|
|
Environment=VAR2=2
|
|
ExecStart=/some/exec/start/command --with-arguments "%i"
|
|
|
|
[Unit]
|
|
Description=A basic test service
|
|
''}
|
|
'';
|
|
};
|
|
}
|