fix xmonad projects syntax
This commit is contained in:
parent
f0f9961626
commit
d497ae2932
1 changed files with 3 additions and 3 deletions
|
@ -20,11 +20,11 @@ let
|
|||
''
|
||||
Project {
|
||||
projectName = "${name}",
|
||||
projectStartHook = ${lib.removeSuffix startHook}
|
||||
projectStartHook = ${startHook}
|
||||
}
|
||||
'';
|
||||
|
||||
xmonadProjects = lib.concatStringsSep ",\n" (map mkXmonadProject cfg.projects);
|
||||
xmonadProjects = lib.concatStringsSep " , " (map mkXmonadProject cfg.projects);
|
||||
in
|
||||
{
|
||||
options.local.xmonad = with lib;
|
||||
|
|
Loading…
Reference in a new issue