From 0601884e281a85aae3f47ed8e33f2fdcf3ed261a Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Fri, 1 Nov 2024 20:37:03 +0100 Subject: fix(modules/legacy/alacitty): Update config to include new subsection --- modules/home.legacy/conf/alacritty/default.nix | 2 +- modules/home.legacy/conf/alacritty/toml/base.toml | 16 ---------------- modules/home.legacy/conf/alacritty/toml/general.toml | 14 ++++++++++++++ 3 files changed, 15 insertions(+), 17 deletions(-) delete mode 100644 modules/home.legacy/conf/alacritty/toml/base.toml create mode 100644 modules/home.legacy/conf/alacritty/toml/general.toml (limited to 'modules') diff --git a/modules/home.legacy/conf/alacritty/default.nix b/modules/home.legacy/conf/alacritty/default.nix index c1cf5e44..87d02959 100644 --- a/modules/home.legacy/conf/alacritty/default.nix +++ b/modules/home.legacy/conf/alacritty/default.nix @@ -1,6 +1,6 @@ {lib, ...}: let config_file = '' - ${lib.strings.fileContents ./toml/base.toml} + ${lib.strings.fileContents ./toml/general.toml} ${lib.strings.fileContents ./toml/bell.toml} ${lib.strings.fileContents ./toml/colorscheme.toml} ${lib.strings.fileContents ./toml/cursor.toml} diff --git a/modules/home.legacy/conf/alacritty/toml/base.toml b/modules/home.legacy/conf/alacritty/toml/base.toml deleted file mode 100644 index 93c9942f..00000000 --- a/modules/home.legacy/conf/alacritty/toml/base.toml +++ /dev/null @@ -1,16 +0,0 @@ -# Configuration for Alacritty, the GPU enhanced terminal emulator. - -# If `true`, bold text is drawn using the bright color variants. -#draw_bold_text_with_bright_colors: true # TODO: - -# Live config reload (changes require restart) -live_config_reload = true - -# Startup directory -# -# Directory the shell is started in. If this is unset, or `None`, the working -# directory of the parent process will be used. -#working_directory: None - -# Offer IPC using `alacritty msg` (unix only) -ipc_socket = true diff --git a/modules/home.legacy/conf/alacritty/toml/general.toml b/modules/home.legacy/conf/alacritty/toml/general.toml new file mode 100644 index 00000000..4651b51b --- /dev/null +++ b/modules/home.legacy/conf/alacritty/toml/general.toml @@ -0,0 +1,14 @@ +# Configuration for Alacritty, the GPU enhanced terminal emulator. + +[general] +# Live config reload (changes require restart) +live_config_reload = true + +# Startup directory +# +# Directory the shell is started in. If this is unset, or `None`, the working +# directory of the parent process will be used. +#working_directory: None + +# Offer IPC using `alacritty msg` (unix only) +ipc_socket = true -- cgit 1.4.1