Adding terminal + starship + zsh

This commit is contained in:
2026-03-07 22:53:02 +01:00
parent daee183a83
commit 130703a417
5 changed files with 128 additions and 3 deletions
@@ -0,0 +1,14 @@
{ config, pkgs, lib, flakeRoot, ... }:
{
xdg.enable = true;
programs.kitty = {
enable = true;
extraConfig = ''
# 1) Theme first (stable path)
include themes/Catppuccin-Mocha.conf
# 2) Force transparency last (wins)
#background_opacity 0.60
#dynamic_background_opacity yes
'';
};
}