Regenerated

This commit is contained in:
2026-03-31 15:33:51 +00:00
parent 2ac1edba7c
commit 2b2da27d20
3 changed files with 286 additions and 331 deletions
+282 -297
View File
File diff suppressed because it is too large Load Diff
+2 -17
View File
@@ -451,11 +451,8 @@ This file sets up Kitty terminal
{ lib, pkgs, config, flakeRoot, ... }:
let
username = config.defaultUser or "henrov";
username = config.defaultUser or "henrov";
#################################
# Optional extra config snippet
#################################
extraConfigFile = "${flakeRoot}/generated/.config/kitty/extra.conf";
extraConfig =
@@ -471,20 +468,12 @@ in
pkgs.kitty
];
#################################
# Stylix (system-level)
#################################
stylix.targets.kitty.enable = true;
#################################
# Home Manager
#################################
home-manager.users = {
"${username}" = {
#################################
# Kitty config (single source of truth)
#################################
programs.kitty = {
enable = true;
@@ -498,14 +487,10 @@ in
background_blur = 5;
};
#################################
# Add your repo config safely
#################################
extraConfig = ''
# Your additional config
${extraConfig}
# Theme include (Stylix usually handles this, but safe fallback)
# Theme
include themes/Catppuccin-Mocha.conf
'';
};
@@ -1,11 +1,8 @@
{ lib, pkgs, config, flakeRoot, ... }:
let
username = config.defaultUser or "henrov";
username = config.defaultUser or "henrov";
#################################
# Optional extra config snippet
#################################
extraConfigFile = "${flakeRoot}/generated/.config/kitty/extra.conf";
extraConfig =
@@ -21,20 +18,12 @@ in
pkgs.kitty
];
#################################
# Stylix (system-level)
#################################
stylix.targets.kitty.enable = true;
#################################
# Home Manager
#################################
home-manager.users = {
"${username}" = {
#################################
# Kitty config (single source of truth)
#################################
programs.kitty = {
enable = true;
@@ -48,14 +37,10 @@ in
background_blur = 5;
};
#################################
# Add your repo config safely
#################################
extraConfig = ''
# Your additional config
${extraConfig}
# Theme include (Stylix usually handles this, but safe fallback)
# Theme
include themes/Catppuccin-Mocha.conf
'';
};