17 lines
304 B
Nix
17 lines
304 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# https://mynixos.com/home-manager/option/programs.ghostty
|
|
programs.ghostty = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
settings = {
|
|
theme = "Adventure";
|
|
background-opacity = 0.7;
|
|
};
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
TERMINAL = "ghostty";
|
|
};
|
|
}
|