Working on terminal
This commit is contained in:
+339
-333
File diff suppressed because it is too large
Load Diff
+16
-10
@@ -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=
|
||||
|
||||
@@ -1,13 +1,18 @@
|
||||
{ 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user