2022-01-12 00:20:57 +01:00
|
|
|
{ pkgs, lib, config, ... }:
|
2022-01-10 19:25:34 +01:00
|
|
|
|
2022-01-23 17:03:10 +01:00
|
|
|
with lib; (mkIf config.riley.gui {
|
2022-01-10 19:25:34 +01:00
|
|
|
home-manager.users."riley" = {
|
2022-05-15 21:01:45 +02:00
|
|
|
|
|
|
|
# Kitty lets me use cool ligatures
|
|
|
|
programs.kitty = {
|
2022-01-10 19:25:34 +01:00
|
|
|
enable = true;
|
2022-05-15 21:01:45 +02:00
|
|
|
|
|
|
|
font = {
|
|
|
|
name = "Fira Code Medium";
|
|
|
|
size = 11;
|
|
|
|
};
|
|
|
|
|
|
|
|
settings = with config.riley.theme.hex; {
|
|
|
|
|
|
|
|
background = background.primary;
|
|
|
|
foreground = foreground.primary;
|
|
|
|
|
|
|
|
color1 = red.normal;
|
|
|
|
color9 = red.bright;
|
|
|
|
|
|
|
|
color2 = green.normal;
|
|
|
|
color10 = green.bright;
|
|
|
|
|
|
|
|
color3 = yellow.normal;
|
|
|
|
color11 = yellow.bright;
|
|
|
|
|
|
|
|
color4 = blue.normal;
|
|
|
|
color12 = blue.bright;
|
|
|
|
|
|
|
|
color5 = purple.normal;
|
|
|
|
color13 = purple.bright;
|
|
|
|
|
|
|
|
color6 = cyan.normal;
|
|
|
|
color14 = cyan.bright;
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-01-10 19:25:34 +01:00
|
|
|
};
|
2022-01-12 00:20:57 +01:00
|
|
|
})
|