NixOS-Configuration/common/users/cameron/home-manager/kitty.nix
2024-02-04 16:05:26 -07:00

18 lines
300 B
Nix

{ pkgs, lib, osConfig, ... }:
{
programs.kitty = {
enable = (builtins.length osConfig.desktop) != 0;
settings = {
background = "#333333";
foreground = "#cccccc";
background_opacity = 0.95;
editor = "nvim";
update_check_interval = 0;
};
};
}