nixos/modules/desktop/kitty.nix

29 lines
534 B
Nix
Raw Normal View History

{ options, config, lib, pkgs, ...}:
with lib;
let cfg = config.modules.desktop.kitty;
in {
options.modules.desktop.kitty = {
2023-07-07 23:46:47 +04:00
enable = mkOption {
type = types.bool;
default = false;
};
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
kitty
];
fonts.fonts = with pkgs; [
jetbrains-mono
(nerdfonts.override { fonts = [
"JetBrainsMono"
];})
];
2023-07-07 21:38:41 +04:00
xdg.configFile = {
kitty = {
source = ../../config/kitty;
};
};
};
}