Files
nixos/Droidnix/generated/system/applications/terminal_shell/kitty.nix
T
2026-03-07 22:56:53 +01:00

19 lines
562 B
Nix

{ config, pkgs, lib, user, inputs, flakeRoot, ... }:
{
# 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;
};
};
};
}