Working on terminal

This commit is contained in:
2026-03-07 22:56:53 +01:00
parent d12e4bd4c8
commit dc02202006
3 changed files with 370 additions and 353 deletions
+16 -10
View File
@@ -1082,19 +1082,25 @@ This is top file of this level which contains just an import statement for all r
** =generated/system/applications/terminal_shell/kitty.nix=
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/applications/terminal_shell/kitty.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, 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
'';
# NixOS-level packages (optional, if you want Kitty installed system-wide)
environment.systemPackages = with pkgs; [ kitty ];
# Home Manager configuration for Kitty
home-manager.users.${user.username} = {
programs.kitty = {
enable = true;
settings = {
font_family = "FiraCode Nerd Font Mono";
include = [ "${flakeRoot}/assets/kitty/themes/Catppuccin-Mocha.conf" ];
background_opacity = 0.60;
dynamic_background_opacity = true;
};
};
};
}
#+END_SRC
** =generated/system/applications/terminal_shell/starship.nix=