mirror of
https://github.com/nix-community/nix-doom-emacs
synced 2025-08-07 12:47:32 -05:00
Use recursive flag on cp for private directory
If the private directory has multiple folders in it, building the derivation will omit them.
This commit is contained in:
@ -203,7 +203,7 @@ let
|
||||
passAsFile = [ "extraConfig" ];
|
||||
} ''
|
||||
mkdir -p $out
|
||||
cp ${doomPrivateDir}/* $out
|
||||
cp -r ${doomPrivateDir}/* $out
|
||||
chmod u+w $out/config.el
|
||||
cat $extraConfigPath >> $out/config.el
|
||||
'';
|
||||
|
Reference in New Issue
Block a user