Regenerated

This commit is contained in:
2026-03-31 15:32:28 +00:00
parent 947f822dcc
commit 2ac1edba7c
3 changed files with 388 additions and 340 deletions
@@ -1,48 +1,64 @@
{ lib, pkgs, config, flakeRoot, ... }:
let
#################################
# Determine default username
#################################
username = config.defaultUser or "henrov";
moduleName = "kitty";
#################################
# Paths to assets
# Optional extra config snippet
#################################
assetPath = "${flakeRoot}/generated/.config/${moduleName}";
assetFiles = builtins.attrNames (builtins.readDir assetPath);
extraConfigFile = "${flakeRoot}/generated/.config/kitty/extra.conf";
extraConfig =
if builtins.pathExists extraConfigFile
then builtins.readFile extraConfigFile
else "";
in
{
#################################
# System-wide packages
# System-wide install
#################################
environment.systemPackages = [
pkgs.kitty
];
#################################
# Home Manager user configuration
# Stylix (system-level)
#################################
stylix.targets.kitty.enable = true;
#################################
# Home Manager
#################################
home-manager.users = {
${username} = {
"${username}" = {
#################################
# Enable Kitty
# Kitty config (single source of truth)
#################################
programs.kitty = {
enable = true;
settings = {
confirm_os_window_close = 0;
dynamic_background_opacity = true;
enable_audio_bell = false;
mouse_hide_wait = "-1.0";
window_padding_width = 10;
background_opacity = "0.5";
background_blur = 5;
confirm_os_window_close = 0;
dynamic_background_opacity = true;
enable_audio_bell = false;
mouse_hide_wait = "-1.0";
window_padding_width = 10;
background_opacity = "0.5";
background_blur = 5;
};
#################################
# Add your repo config safely
#################################
extraConfig = ''
# Your additional config
${extraConfig}
# Theme include (Stylix usually handles this, but safe fallback)
include themes/Catppuccin-Mocha.conf
'';
};
};
};
};
stylix.targets.kitty.enable = true;
}