mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
16 lines
319 B
Nix
16 lines
319 B
Nix
{pkgs, ...}: {
|
|
home.sessionVariables = {
|
|
TERMINAL = "alacritty";
|
|
};
|
|
xdg.terminal-exec = {
|
|
enable = true;
|
|
settings.default = [ "alacritty.desktop" ];
|
|
};
|
|
stylix.targets.alacritty.enable = true;
|
|
programs.alacritty = {
|
|
enable = true;
|
|
package = pkgs.alacritty;
|
|
settings = {
|
|
};
|
|
};
|
|
}
|