dotfiles/nix/home/programs/alacritty/default.nix

15 lines
213 B
Nix
Raw Permalink Normal View History

2022-08-03 08:23:19 -07:00
{ pkgs, ... }:
let
in
with builtins;
{
programs.alacritty = {
enable = true;
settings = {
window.decorations = "none";
font.size = 14;
selection.save_to_clipboard = true;
};
};
}