aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/configuration/workstation/kitty/uwu.nix
blob: 25204a6f398c8e00bb2b317071727d5fe70133db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * 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;
    fontSize = 11;
  };
}