files/mutable-files: update script

This commit is contained in:
Gabriel Arazas 2023-08-21 12:15:23 +08:00
parent 7c203ab665
commit 365877f6a0
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -142,9 +142,11 @@ in
'') '')
cfg; cfg;
script = pkgs.writeShellScript "fetch-mutable-files" '' script = pkgs.writeShellApplication {
${lib.concatStringsSep "\n" mutableFilesCmds} name = "fetch-mutable-files";
''; runtimeInputs = with pkgs; [ archiver curl git gopass ];
text = "${lib.concatStringsSep "\n" mutableFilesCmds}";
};
in in
builtins.toString script; builtins.toString script;
}; };