From e0bb3b2b59457c27bf8df5cee7bb2c634ba2079d Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sat, 23 Dec 2023 18:44:06 +0800 Subject: [PATCH] files/mutable-files: change `postScript` type to lines Didn't realize you cannot merge strings. --- modules/home-manager/files/mutable-files.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home-manager/files/mutable-files.nix b/modules/home-manager/files/mutable-files.nix index f4a1f5fa..2d189eca 100644 --- a/modules/home-manager/files/mutable-files.nix +++ b/modules/home-manager/files/mutable-files.nix @@ -101,7 +101,7 @@ let }; postScript = lib.mkOption { - type = lib.types.str; + type = lib.types.lines; description = '' A shell script fragment to be executed after the download. '';