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:
parent
322923829c
commit
2a76dc2039
5 changed files with 123 additions and 34 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue