From 556abd25f0f69d1c0b24644633a8e2a8b95fc842 Mon Sep 17 00:00:00 2001 From: iFargle Date: Fri, 7 Jul 2023 16:47:49 +0900 Subject: [PATCH] Add gnome-terminal --- users/albert/home.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/users/albert/home.nix b/users/albert/home.nix index 3bd947bf..a5f1cd82 100644 --- a/users/albert/home.nix +++ b/users/albert/home.nix @@ -7,4 +7,21 @@ ../../common/dotfiles/bash.nix ../../common/dotfiles/firefox.nix ]; + + # Set gnome-terminal info + # https://mipmip.github.io/home-manager-option-search/?query=programs.gnome-terminal + programs.gnome-terminal = { + enable = true; + showMenubar = false; + themeVariant = "system"; + + proifle.default = { + audibleBell = true; + allowBold = true; + boldIsBright = true; + cursorBlinkMode = "off"; + cursorShape = "ibeam"; + + }; + }; } \ No newline at end of file