modules/mutable-files: fix the service value

This commit is contained in:
Gabriel Arazas 2023-03-23 08:06:44 +08:00
parent 7869bb79cf
commit c5bf67553c
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -132,11 +132,11 @@ in
''}
'')
cfg;
in
pkgs.writeScript "fetch-mutable-files" ''
#!${pkgs.runtimeShell}
${lib.concatStringsSep "\n" mutableFilesCmds}
'';
script = pkgs.writeShellScript "fetch-mutable-files" ''
${lib.concatStringsSep "\n" mutableFilesCmds}
'';
in builtins.toString script;
};
Install.WantedBy = [ "default.target" ];