Files
nextcloud_ecosystem/system-master/home/dev/kitty.nix
T
2026-02-22 17:28:02 +01:00

15 lines
398 B
Nix

{ config, pkgs, lib, flakeRoot, ... }:
let
repoKittyConf = flakeRoot + "/assets/conf/dev/kitty.conf";
in
{
xdg.enable = true;
programs.kitty.enable = true;
catppuccin.alacritty.enable = true;
catppuccin.alacritty.flavor = "mocha";
syntaxHighlighting.enable = true;
autosuggestion.enable = true;
enableCompletion = true;
xdg.configFile."kitty/kitty.conf".source = repoKittyConf;
}