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/configuration/workstation/kitty/default.nix

18 lines
531 B

/**
* The main configuration for kitty used on _all_ systems.
*
* The module is designed to use the default values I would like to
* use on my systems, however this will not stay this way, seeing as
* I plan on replacing it with the home-manager module in the future
* which will be tailored less to my use-case :)
*/
{ config, home-manager, ... }:
{
# Load the home-manager kitty module
imports = [ <modules/workstation/ui/kitty/default.nix> ];
# Customise kitty installation
libkookie.ui.kitty.enable = true;
}