From f6557934ac0605c8a36bb19ebebc912b7863fd9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sun, 10 May 2020 10:21:01 +0100 Subject: [PATCH] Add gnome terminal settings --- nixos/gnome/home.nix | 36 ++++++++++++++++++++++++++++++++---- 1 file changed, 32 insertions(+), 4 deletions(-) diff --git a/nixos/gnome/home.nix b/nixos/gnome/home.nix index d44177b3..15e33ea4 100644 --- a/nixos/gnome/home.nix +++ b/nixos/gnome/home.nix @@ -1,14 +1,42 @@ { config, pkgs, ... }: { services = { - kdeconnect = { - enable = true; - indicator = true; - }; }; xsession = { enable = false; }; + programs.gnome-terminal = { + enable = true; + profile = { + cyplo = { + visibleName = "peninsula"; + default = true; + font = "Fira Code Nerd Font"; + colors = { + foregroundColor = "#838394949696"; + backgroundColor = "#00002B2B3636"; + palette = [ + "#070736364242" + "#DCDC32322F2F" + "#858599990000" + "#B5B589890000" + "#26268B8BD2D2" + "#D3D336368282" + "#2A2AA1A19898" + "#EEEEE8E8D5D5" + "#00002B2B3636" + "#CBCB4B4B1616" + "#58586E6E7575" + "#65657B7B8383" + "#838394949696" + "#6C6C7171C4C4" + "#9393A1A1A1A1" + "#FDFDF6F6E3E3" + ]; + }; + }; + }; + }; }