1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-20 17:29:39 +01:00

kanshi: fix exec configuration

Also add a test case for the exec option.

PR #1446
This commit is contained in:
Nicolas Berbiche 2020-08-18 18:49:15 -04:00 committed by Robert Helgesson
parent a063b73d5c
commit 182454fe6b
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
3 changed files with 3 additions and 1 deletions

View file

@ -120,7 +120,7 @@ let
''
profile ${name} {
${concatStringsSep "\n " (map outputStr outputs)}
'' + optionalString (exec != null) " ${exec}" + ''
'' + optionalString (exec != null) " exec ${exec}\n" + ''
}
'';
in {