mirror of https://gitlab.crans.org/nounous/nixos
fix: correct concatenation
parent
8dc41773ae
commit
898836fed1
|
|
@ -32,5 +32,5 @@ in
|
|||
users.motd = ''
|
||||
${config.networking.hostName} utilise NixOS ${lib.version} \n
|
||||
''
|
||||
++ lib.concatStringsSep "\n" (map phrase importantPackages);
|
||||
+ lib.concatStringsSep "\n" (map phrase importantPackages);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue