19 lines
562 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|