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
+339 -333
View File
File diff suppressed because it is too large Load Diff
+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= ** =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 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 #+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; # NixOS-level packages (optional, if you want Kitty installed system-wide)
programs.kitty = { environment.systemPackages = with pkgs; [ kitty ];
enable = true;
extraConfig = '' # Home Manager configuration for Kitty
# 1) Theme first (stable path) home-manager.users.${user.username} = {
include themes/Catppuccin-Mocha.conf programs.kitty = {
# 2) Force transparency last (wins) enable = true;
#background_opacity 0.60 settings = {
#dynamic_background_opacity yes font_family = "FiraCode Nerd Font Mono";
''; include = [ "${flakeRoot}/assets/kitty/themes/Catppuccin-Mocha.conf" ];
background_opacity = 0.60;
dynamic_background_opacity = true;
};
};
}; };
} }
#+END_SRC #+END_SRC
** =generated/system/applications/terminal_shell/starship.nix= ** =generated/system/applications/terminal_shell/starship.nix=
@@ -1,13 +1,18 @@
{ config, pkgs, lib, user, inputs, flakeRoot, ... }:
{ {
xdg.enable = true; # NixOS-level packages (optional, if you want Kitty installed system-wide)
programs.kitty = { environment.systemPackages = with pkgs; [ kitty ];
enable = true;
extraConfig = '' # Home Manager configuration for Kitty
# 1) Theme first (stable path) home-manager.users.${user.username} = {
include themes/Catppuccin-Mocha.conf programs.kitty = {
# 2) Force transparency last (wins) enable = true;
#background_opacity 0.60 settings = {
#dynamic_background_opacity yes font_family = "FiraCode Nerd Font Mono";
''; include = [ "${flakeRoot}/assets/kitty/themes/Catppuccin-Mocha.conf" ];
background_opacity = 0.60;
dynamic_background_opacity = true;
};
};
}; };
} }