Skip to content

Commit

Permalink
feat(reaper): impl reg setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtnvgr committed Apr 24, 2024
1 parent 4a96bf0 commit bde8b24
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion modules/desktop/apps/reaper/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,17 @@ let
wine regedit ${x}
'') cfg.regFiles);

script = concatStringsSep "\n" [ dataScript regScript ];
script = concatStringsSep "\n" [
(mkLog "Copying data...")
dataScript

"set -x"

(mkLog "Applying reg files...")
regScript

"set +x"
];
in script;

preScript = ''
Expand Down

0 comments on commit bde8b24

Please sign in to comment.