1 2 3 4 5 6 7 8 9 10 11
{lib, ...}: let config_file = '' ${lib.strings.fileContents ./yaml/base.yml} ${lib.strings.fileContents ./yaml/colorscheme.yml} ''; in { programs.alacritty = { enable = true; }; xdg.configFile."alacritty/alacritty.yml".text = config_file; }