20 lines
396 B
Nix
20 lines
396 B
Nix
{ options, config, lib, pkgs, ...}:
|
|
with lib;
|
|
let cfg = config.modules.desktop.kitty;
|
|
in {
|
|
options.modules.desktop.kitty = {
|
|
enable = mkBoolOpt false;
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
users.users.sako.packages = with pkgs; [
|
|
kitty
|
|
];
|
|
fonts.fonts = with pkgs; [
|
|
jetbrains-mono
|
|
(nerdfonts.override { fonts = [
|
|
"JetBrainsMono"
|
|
];})
|
|
];
|
|
};
|
|
}
|