diff options
author | tv <tv@krebsco.de> | 2024-06-06 20:52:08 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2024-06-06 21:01:46 +0200 |
commit | e3816a610701660ade0b8804e3bb204701f42c83 (patch) | |
tree | 05b00fb221ddd99a3a9b9d86b739abb3784e5aa3 /pkgs | |
parent | b18a55f41af2cf67e93a1082a96f3e498b341240 (diff) |
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/simple/alacritty-tv.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/simple/alacritty-tv.nix b/pkgs/simple/alacritty-tv.nix index 0e65434..bea5776 100644 --- a/pkgs/simple/alacritty-tv.nix +++ b/pkgs/simple/alacritty-tv.nix @@ -7,7 +7,7 @@ pkgs.symlinkJoin { # usage: # alacritty [--profile=PROFILE] [--singleton] [ARGS...] # where - # PROFILE must have a corresponding file /etc/alacritty/PROFILE.json + # PROFILE must have a corresponding file /etc/alacritty/PROFILE.toml set -efu @@ -18,12 +18,12 @@ pkgs.symlinkJoin { shift esac - config=/etc/alacritty/$profile.json + config=/etc/alacritty/$profile.toml if ! test -e "$config"; then echo "$0: warning: bad profile: $profile; using default instead" >&2 profile=default - config=/etc/alacritty/default.json + config=/etc/alacritty/default.toml fi case ''${1-} in |