My Nix Configuration
1{ lib, config, ... }: 2let 3 cfg = config.py.programs.kitty; 4in 5{ 6 options.py.programs.kitty.enable = lib.mkEnableOption "kitty"; 7 config.catppuccin.kitty.enable = cfg.enable; 8 config.programs.kitty = lib.mkIf cfg.enable { 9 enable = true; 10 font.name = "BlexMono Nerd Font"; 11 font.size = 14; 12 settings = import ./settings.nix; 13 }; 14}