diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2023-09-29 20:38:26 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2023-09-29 20:38:26 -0400 |
commit | 1f327873451b9617e305b4b97f83a1824574881d (patch) | |
tree | d2b35b4fe800efb2b63ce1e99ea7a3bff0a184ec /modules/terminal | |
parent | f819e30b03dffcf9e74af4b8552e4a8ab8f54c58 (diff) | |
download | nix-config-1f327873451b9617e305b4b97f83a1824574881d.tar.gz nix-config-1f327873451b9617e305b4b97f83a1824574881d.tar.bz2 nix-config-1f327873451b9617e305b4b97f83a1824574881d.zip |
add laptop host
Diffstat (limited to 'modules/terminal')
-rw-r--r-- | modules/terminal/kitty/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/terminal/kitty/default.nix b/modules/terminal/kitty/default.nix index 1ff0b78..5e0a432 100644 --- a/modules/terminal/kitty/default.nix +++ b/modules/terminal/kitty/default.nix @@ -26,9 +26,11 @@ with lib; tab_bar_style = "powerline"; tab_powerline_style = "slanted"; tab_title_template = "{title}{' :{}'.format(num_windows) if num_windows > 1 else ''}"; + + background_opacity = "0.8"; }; extraConfig = '' - include ./theme.conf +include ./theme.conf ''; }; }; |