My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/libkookie/modules/workstation/ui/kitty/config.nix

26 lines
437 B

{ config, lib, ... }:
let
cfg = config.libkookie.ui.kitty;
colors = with lib;
(concatMapStringsSep "\n" (a: a)
(mapAttrsToList (k: v: "${k} ${v}") cfg.colors));
in
''
font_size ${builtins.toString cfg.fontSize}
disable_ligatures always
open_url_modifiers ctrl+shift
open_url_with default
term ${cfg.term}
cursor_shape ${cfg.cursorShape}
background_opacity 0.85
enable_audio_bell no
${colors}
''