mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
14 lines
431 B
Nix
14 lines
431 B
Nix
{
|
|
imports = [ ./common-stubs.nix ];
|
|
|
|
systemd.user.tmpfiles.settings.foo.path.f.argument = "my\\x20unescaped\\x20config";
|
|
|
|
test.asserts.warnings.expected = [
|
|
''
|
|
The 'systemd.user.tmpfiles.settings.foo.path.f.argument' option
|
|
appears to contain escape sequences, which will be escaped again.
|
|
Unescape them if this is not intended. The assigned string is:
|
|
"my\x20unescaped\x20config"
|
|
''
|
|
];
|
|
}
|