dotfiles/home/modules/gui/alacritty.nix
John Bowdre 863252abd6
gui: add alacritty
also: fix chromeos-related configurations for xdgconfig and nixgl
2024-12-20 14:53:12 -06:00

8 lines
193 B
Nix

{ config, pkgs, ... }: {
programs.alacritty = {
enable = true;
package = (config.lib.nixGL.wrap pkgs.alacritty);
settings = { window = { startup_mode = "Maximized"; }; };
};
}