16 lines
472 B
Nix
16 lines
472 B
Nix
{ config, pkgs, lib, user, flakeRoot, ... }:
|
|
|
|
{
|
|
home-manager.users.${user.username} = {
|
|
programs.kitty = {
|
|
enable = true;
|
|
};
|
|
|
|
# Copy the main kitty.conf
|
|
xdg.configFile."kitty/kitty.conf".text = builtins.readFile "${flakeRoot}/assets/system/conf/kitty/kitty.conf";
|
|
|
|
# Copy the Stylix-generated Catppuccin Mocha theme
|
|
xdg.configFile."kitty/Catppuccin-Mocha.conf".source = "${flakeRoot}/assets/system/conf/kitty/Catppuccin-Mocha.conf";
|
|
};
|
|
}
|