Files
nixos/home/gui/terminal.nix
T

14 lines
182 B
Nix
Raw Normal View History

2022-04-29 10:58:31 -05:00
{ ... }:
{
programs.gnome-terminal = {
enable = true;
showMenubar = true;
themeVariant = "dark";
profile.default = {
default = true;
visibleName = "greg";
};
};
}