From 898836fed148280ca8681567ff720abc930a5a6e Mon Sep 17 00:00:00 2001 From: Lzebulon Date: Wed, 17 Dec 2025 12:47:58 +0100 Subject: [PATCH] fix: correct concatenation --- modules/crans/motd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/crans/motd.nix b/modules/crans/motd.nix index 68245ae..6b94b05 100644 --- a/modules/crans/motd.nix +++ b/modules/crans/motd.nix @@ -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); }