14 lines
216 B
Nix
14 lines
216 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {};
|
|
theme = "smoooooth";
|
|
};
|
|
|
|
home.sessionVariables.TERMINAL = lib.mkIf (config.terminal == "alacritty") "alacritty";
|
|
}
|