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:
parent
a063b73d5c
commit
182454fe6b
3 changed files with 3 additions and 1 deletions
|
|
@ -120,7 +120,7 @@ let
|
|||
''
|
||||
profile ${name} {
|
||||
${concatStringsSep "\n " (map outputStr outputs)}
|
||||
'' + optionalString (exec != null) " ${exec}" + ''
|
||||
'' + optionalString (exec != null) " exec ${exec}\n" + ''
|
||||
}
|
||||
'';
|
||||
in {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue