mirror of
https://github.com/kp2pml30/dotfiles.git
synced 2026-02-16 23:34:42 +04:00
14 lines
253 B
Nix
14 lines
253 B
Nix
{ pkgs
|
|
, lib
|
|
, rootPath
|
|
, config
|
|
, ...
|
|
}:
|
|
let
|
|
cfg = config.kp2pml30;
|
|
in lib.mkIf cfg.kitty {
|
|
home-manager.users.${cfg.username}.programs.kitty = {
|
|
enable = true;
|
|
extraConfig = builtins.readFile (rootPath + "/home/.config/kitty/kitty.conf");
|
|
};
|
|
}
|