mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-23 12:42:18 +00:00
8 lines
193 B
Nix
8 lines
193 B
Nix
{ config, pkgs, ... }: {
|
|
programs.alacritty = {
|
|
enable = true;
|
|
package = (config.lib.nixGL.wrap pkgs.alacritty);
|
|
settings = { window = { startup_mode = "Maximized"; }; };
|
|
};
|
|
}
|
|
|