Files
nixos/home/gui/terminal.nix
T

14 lines
236 B
Nix
Raw Normal View History

2022-09-07 20:01:51 -05:00
{ lib, pkgs, ... }:
2022-04-29 10:58:31 -05:00
{
2022-09-07 20:01:51 -05:00
programs.gnome-terminal = lib.mkIf ( pkgs.system != "x86_64-darwin") {
2022-04-29 10:58:31 -05:00
enable = true;
showMenubar = true;
themeVariant = "dark";
profile.default = {
default = true;
visibleName = "greg";
};
};
}