49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{
|
|
inputs,
|
|
moduleWithSystem,
|
|
...
|
|
}: {
|
|
flake.nixosModules.kitty = moduleWithSystem (
|
|
{self'}: {
|
|
environment.systemPackages = with self'.packages; [
|
|
kitty
|
|
];
|
|
}
|
|
);
|
|
perSystem = {pkgs, ...}: {
|
|
packages.kitty = let
|
|
fira-mono = pkgs.nerd-fonts.fira-mono;
|
|
fontsConf = pkgs.makeFontsConf {
|
|
fontDirectories = [fira-mono];
|
|
};
|
|
in
|
|
inputs.wrappers.wrappers.kitty.wrap {
|
|
inherit pkgs;
|
|
environment = {
|
|
"FONTCONFIG_FILE" = "${fontsConf}";
|
|
};
|
|
font = {
|
|
name = "FiraMono Nerd Font Mono";
|
|
size = 11;
|
|
};
|
|
settings = {
|
|
font_size = 11;
|
|
scrollbar = "never";
|
|
window_padding_width = 9;
|
|
background_opacity = 0.50;
|
|
confirm_os_window_close = 0;
|
|
enable_audio_bell = false;
|
|
cursor_trail = 1;
|
|
cursor_trail_start_threshold = 1;
|
|
cursor_trail_color = "#cba6f7";
|
|
cursor_shape = "beam";
|
|
allow_remote_control = true;
|
|
};
|
|
keybindings = {
|
|
"ctrl+backspace" = "send_text all \\x17";
|
|
};
|
|
themeFile = "Catppuccin-Mocha";
|
|
};
|
|
};
|
|
}
|