fix: correct concatenation

motd
Lzebulon 2025-12-17 12:47:58 +01:00
parent 8dc41773ae
commit 898836fed1
No known key found for this signature in database
GPG Key ID: D6CDAB8050CBBE7D
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}