diff options
| author | makefu <github@syntax-fehler.de> | 2023-01-10 13:20:04 +0100 |
|---|---|---|
| committer | makefu <github@syntax-fehler.de> | 2023-01-10 13:20:04 +0100 |
| commit | ed48ea7ef4ad6874588962f351389c2af36d8199 (patch) | |
| tree | 982b449bc39748236d6e563f2bd388079256acab /tv/5pkgs/simple | |
| parent | aa1e058ba6e8c3e701a2503d65ddb3c83d5c4f47 (diff) | |
| parent | 206a5d145418c3484100b0598a9593a950fbfc98 (diff) | |
Merge remote-tracking branch 'lass/master'
Diffstat (limited to 'tv/5pkgs/simple')
| -rw-r--r-- | tv/5pkgs/simple/alacritty-tv.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tv/5pkgs/simple/alacritty-tv.nix b/tv/5pkgs/simple/alacritty-tv.nix index 466ff27..d80c46c 100644 --- a/tv/5pkgs/simple/alacritty-tv.nix +++ b/tv/5pkgs/simple/alacritty-tv.nix @@ -70,8 +70,7 @@ pkgs.symlinkJoin { # Install stored configuration if it has changed. # This allows for both declarative updates and runtime modifications. ${pkgs.coreutils}/bin/mkdir -p "$HOME" - ref=$(${pkgs.coreutils}/bin/cat "$HOME"/ref) - if test "$ref" != ${config-file}; then + if test "$(${pkgs.coreutils}/bin/cat "$HOME"/ref)" != ${config-file}; then echo ${config-file} > "$HOME"/ref ${pkgs.coreutils}/bin/cp ${config-file} "$HOME"/.alacritty.yml fi |
