13 lines
409 B
Nix
13 lines
409 B
Nix
{ config, pkgs, lib, user, flakeRoot, ... }:
|
|
let
|
|
kittyConf = "${flakeRoot}/assets/system/conf/kitty/kitty.conf";
|
|
kittyTheme = "${flakeRoot}/assets/system/conf/kitty/Catppuccin-Mocha.conf";
|
|
in
|
|
{
|
|
home-manager.users.${user.username} = {
|
|
programs.kitty.enable = true;
|
|
xdg.configFile."kitty/kitty.conf".source = kittyConf;
|
|
xdg.configFile."kitty/Catppuccin-Mocha.conf".source = kittyTheme;
|
|
};
|
|
}
|