mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 06:19:00 +00:00
home-manager/files/mutable-files: update fetch script (again)
This commit is contained in:
parent
c73f9e0c1e
commit
56463dec13
@ -178,13 +178,14 @@ in
|
||||
'')
|
||||
cfg;
|
||||
|
||||
script = pkgs.writeShellApplication {
|
||||
name = "fetch-mutable-files";
|
||||
runtimeInputs = with pkgs; [ archiver curl git gopass ];
|
||||
text = lib.concatStringsSep "\n" mutableFilesCmds;
|
||||
};
|
||||
runtimeInputs = lib.makeBinPath (with pkgs; [
|
||||
archiver curl git gopass
|
||||
]);
|
||||
in
|
||||
"${script}/bin/fetch-mutable-files";
|
||||
pkgs.writeShellScript "fetch-mutable-files" ''
|
||||
export PATH=${runtimeInputs}
|
||||
${lib.concatStringsSep "\n" mutableFilesCmds}
|
||||
'';
|
||||
|
||||
ExecStartPost =
|
||||
let
|
||||
|
Loading…
Reference in New Issue
Block a user