nix-config/modules/kitty/default.nix
2024-03-22 23:35:56 -07:00

14 lines
303 B
Nix

{ pkgs, lib, config, ... }:
with lib;
let cfg = config.modules.foot;
in {
options.modules.foot = { enable = mkEnableOption "foot"; };
config = mkIf cfg.enable {
programs.kitty = {
enable = true;
extraConfig = buildins.readFile ./kitty.conf;
};
};
}