1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00
nixos/users/ellmau/alacritty.nix

15 lines
286 B
Nix

{ config, pkgs, lib, ... }:
{
config = lib.mkIf config.variables.graphical {
home-manager.users.ellmau.programs.alacritty = {
enable = true;
settings = {
window = {
decorations = "full";
};
alt_send_esc = true;
};
};
};
}