aboutsummaryrefslogtreecommitdiffstats
path: root/home/alacritty/default.nix
blob: 5bed57a1a0fe9b43c125f1435685f06b927e7267 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ vars, pkgs, ... }:

{
  programs.alacritty = {
    enable = true;
    settings = {
      selection = {
        save_to_clipboard = true;
      };
    };
  };
}