nixos-config/modules/programs/gnome-terminal/default.nix

19 lines
446 B
Nix
Raw Normal View History

2021-08-04 17:07:42 +00:00
{ config, pkgs, ... }:
2021-07-29 20:21:51 +00:00
{
2021-08-04 17:07:42 +00:00
config = {
environment.systemPackages = [ pkgs.gnome.gnome-terminal ];
home-manager.users."${config.system.singleUser}".programs.gnome-terminal = {
enable = true;
profile.default = {
visibleName = "default";
audibleBell = false;
#boldIsBright = true;
default = true;
# TODO: Make this configurable
font = "Source Code Pro 12";
};
2021-07-29 20:21:51 +00:00
};
};
}