about summary refs log tree commit diff stats
path: root/hm/soispha/conf/alacritty/default.nix
blob: 7c23c919921799e14663326ce1434970c161a27d (plain) (blame)
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;
}