loadout/alacritty/default.nix

62 lines
1.5 KiB
Nix
Raw Normal View History

2017-10-18 00:12:57 +00:00
{
config,
zsh,
pkgs ? (import ../pkgs.nix).edge {},
2017-10-18 00:12:57 +00:00
}: rec {
defaultXDGOpenRules = [
{
name = "open-url";
pattern = "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)[^<>\"\\s{-}\\^`]+";
xdgOpen = "$1";
}
];
2017-10-18 00:12:57 +00:00
xdgOpenRules = defaultXDGOpenRules ++ config.alacritty.xdgOpenRules;
2017-10-18 00:12:57 +00:00
hints = {
enabled = (builtins.map (r:
{
regex = r.pattern;
hyperlinks = true;
command = (pkgs.writeShellScript "alacritty-hints-${r.name}" ''
xdg-open "${r.xdgOpen}"
'');
post_processing = true;
mouse.enabled = true;
}
) xdgOpenRules);
};
2017-10-18 00:12:57 +00:00
configFile = pkgs.writeText "alacritty-config" (
builtins.replaceStrings
["$HINTS"]
[(builtins.toJSON hints)]
(builtins.readFile ./alacritty.yml)
);
2017-10-18 00:12:57 +00:00
shellEntrypoint = pkgs.writeShellScript "alacritty-shell-entrypoint" ''
unset LD_LIBRARY_PATH
unset __EGL_VENDOR_LIBRARY_DIRS
exec "${zsh}/bin/zsh" "$@"
'';
2017-10-18 00:12:57 +00:00
alacritty = pkgs.writeScriptBin "alacritty" ''
#!${pkgs.bash}/bin/bash
# TODO this might break things, especially if the machine is not using
# nvidia, but more investigation is needed. But it at least lets us get rid
# of nixGL.
export LD_LIBRARY_PATH=/usr/lib
export __EGL_VENDOR_LIBRARY_DIRS=/usr/share/glvnd/egl_vendor.d
exec ${pkgs.alacritty}/bin/alacritty \
-o font.size=${builtins.toString config.alacritty.fontSize} \
--config-file ${configFile} \
-e "${shellEntrypoint}"
2017-10-18 00:12:57 +00:00
'';
}