Update nixpkgs and add broot overlay

broot 1.14.0 does not build on non-Linux, so 1.14.1 is in as a hotfix.
This commit is contained in:
Natsu Kagami 2022-07-06 15:56:28 -04:00 committed by Natsu Kagami
parent 322923829c
commit 2a76dc2039
5 changed files with 123 additions and 34 deletions

View file

@ -11,6 +11,11 @@ with lib;
options.nki.programs.kitty = {
enable = mkEnableOption "Enable kitty";
package = mkOption {
type = types.package;
default = pkgs.kitty;
};
# font
fontSize = mkOption {
type = types.int;
@ -29,6 +34,8 @@ with lib;
config.programs.kitty = mkIf cfg.enable {
enable = true;
package = cfg.package;
font.package = pkgs.fantasque-sans-mono;
font.name = "Fantasque Sans Mono";
font.size = cfg.fontSize;