From 27ffbabf8a240e12a782bb39f6b81472a792fbdf Mon Sep 17 00:00:00 2001 From: iFargle Date: Mon, 21 Aug 2023 23:21:11 +0900 Subject: [PATCH] test --- .../nixos-laptop/home-manager/gnome-conf.nix | 44 +++++++++++++++++-- 1 file changed, 41 insertions(+), 3 deletions(-) diff --git a/hosts/nixos-laptop/home-manager/gnome-conf.nix b/hosts/nixos-laptop/home-manager/gnome-conf.nix index ebcfc446..40caf940 100644 --- a/hosts/nixos-laptop/home-manager/gnome-conf.nix +++ b/hosts/nixos-laptop/home-manager/gnome-conf.nix @@ -1,5 +1,5 @@ # Generated via dconf2nix: https://github.com/gvolpe/dconf2nix -{ lib, ... }: with lib.hm.gvariant; +{ lib, ... }: let # Day Variant day-wallpaper = "file:///etc/nixos/git/desktops/wallpapers/gruvbox/wallpaper10.jpg"; @@ -16,9 +16,47 @@ let in { # Gnome GTK Settings gtk.theme = "${night-gtk-theme}"; - + + programs.gnome-terminal = { + enable = true; + themeVariant = "system"; + profile."Default" = { + boldIsBright = true; + cursorShape = "block"; + font = "Jetbrains Regular Mono"; + colors = { + # https://github.com/Gogh-Co/Gogh/blob/master/themes/Gruvbox%20Dark.yml + # highlight = [ ]; + palette = [ + "#282828" # Black (Host) + "#CC241D" # Red (Syntax string) + "#98971A" # Green (Command) + "#D79921" # Yellow (Command second) + "#458588" # Blue (Path) + "#B16286" # Magenta (Syntax var) + "#689D6A" # Cyan (Prompt) + "#A89984" # White + + "#928374" # Bright Black + "#FB4934" # Bright Red (Command error) + "#B8BB26" # Bright Green (Exec) + "#FABD2F" # Bright Yellow + "#83A598" # Bright Blue (Folder) + "#D3869B" # Bright Magenta + "#8EC07C" # Bright Cyan + "#EBDBB2" # Bright White + + "#282828" # Background + "#EBDBB2" # Foreground (Text) + + "#EBDBB2" # Cursor + ]; + }; + }; + }; + # Gnome DCONF Settings - dconf.settings = { + dconf.settings = with lib.hm.gvariant; { "apps/seahorse/listing" = { keyrings-selected = [ "openssh:///home/albert/.ssh" ]; };