From e3816a610701660ade0b8804e3bb204701f42c83 Mon Sep 17 00:00:00 2001 From: tv Date: Thu, 6 Jun 2024 20:52:08 +0200 Subject: alacritty: modernize config --- pkgs/simple/alacritty-tv.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs') 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 -- cgit v1.2.3