qol: swapped out foot for kitty

This commit is contained in:
2025-12-25 22:16:32 +00:00
parent 9eb4e7b429
commit 8acede0964
6 changed files with 56 additions and 14 deletions

31
modules/kitty/home.nix Normal file
View File

@@ -0,0 +1,31 @@
{
config,
lib,
inputs,
pkgs,
home,
system,
...
}:
let
cfg = config.modules.kitty;
in
{
options.modules.kitty = {
enable = lib.mkEnableOption "kitty configuration module";
};
config = lib.mkIf cfg.enable {
programs.kitty = {
enable = true;
font = {
name = "Google Sans Code Nerd Font";
size = 11;
};
};
wayland.windowManager.hyprland.settings = {
bind = [
"$mainMod, q, exec, kitty"
];
};
};
}