diff options
author | Soispha <soispha@vhack.eu> | 2024-01-13 12:34:06 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-01-13 13:14:12 +0100 |
commit | 5442310fb9fd4edd0904f478f71ddc75699fc0a2 (patch) | |
tree | 3defa23e252838e4c09f93a0ad6277d23cbf6928 /hm/soispha/conf/alacritty/default.nix | |
parent | feat(hm/pkgs/scr/nato): init (diff) | |
download | nixos-config-5442310fb9fd4edd0904f478f71ddc75699fc0a2.zip |
fix(hm/conf/alacritty): Switch to a toml config
Diffstat (limited to 'hm/soispha/conf/alacritty/default.nix')
-rw-r--r-- | hm/soispha/conf/alacritty/default.nix | 33 |
1 files changed, 14 insertions, 19 deletions
diff --git a/hm/soispha/conf/alacritty/default.nix b/hm/soispha/conf/alacritty/default.nix index 9048fc34..c1cf5e44 100644 --- a/hm/soispha/conf/alacritty/default.nix +++ b/hm/soispha/conf/alacritty/default.nix @@ -1,23 +1,18 @@ {lib, ...}: let - # NOTE: The `colorscheme.yml` import __needs__ to be __after__ the `colors.yml` import, otherwise, applying it wont - # work. <2023-08-28> config_file = '' - ${lib.strings.fileContents ./yaml/base.yml} - ${lib.strings.fileContents ./yaml/bell.yml} - ${lib.strings.fileContents ./yaml/colors.yml} - ${lib.strings.fileContents ./yaml/colorscheme.yml} - ${lib.strings.fileContents ./yaml/cursor.yml} - ${lib.strings.fileContents ./yaml/debug.yml} - ${lib.strings.fileContents ./yaml/env.yml} - ${lib.strings.fileContents ./yaml/font.yml} - ${lib.strings.fileContents ./yaml/hints.yml} - ${lib.strings.fileContents ./yaml/key_bindings.yml} - ${lib.strings.fileContents ./yaml/mouse.yml} - ${lib.strings.fileContents ./yaml/mouse_bindings.yml} - ${lib.strings.fileContents ./yaml/scrolling.yml} - ${lib.strings.fileContents ./yaml/selection.yml} - ${lib.strings.fileContents ./yaml/shell.yml} - ${lib.strings.fileContents ./yaml/window.yml} + ${lib.strings.fileContents ./toml/base.toml} + ${lib.strings.fileContents ./toml/bell.toml} + ${lib.strings.fileContents ./toml/colorscheme.toml} + ${lib.strings.fileContents ./toml/cursor.toml} + ${lib.strings.fileContents ./toml/env.toml} + ${lib.strings.fileContents ./toml/font.toml} + ${lib.strings.fileContents ./toml/hints.toml} + ${lib.strings.fileContents ./toml/keyboard_bindings.toml} + ${lib.strings.fileContents ./toml/mouse.toml} + ${lib.strings.fileContents ./toml/mouse_bindings.toml} + ${lib.strings.fileContents ./toml/scrolling.toml} + ${lib.strings.fileContents ./toml/selection.toml} + ${lib.strings.fileContents ./toml/window.toml} ''; in { home.sessionVariables = { @@ -31,5 +26,5 @@ in { programs.alacritty = { enable = true; }; - xdg.configFile."alacritty/alacritty.yml".text = config_file; + xdg.configFile."alacritty/alacritty.toml".text = config_file; } |