stuff
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
{ lib, ... }:
|
||||
{ lib, namespace, ... }:
|
||||
with lib;
|
||||
let
|
||||
inherit (lib.${namespace}) mkOpt;
|
||||
in
|
||||
{
|
||||
options.mjallen.programs.kitty = {
|
||||
enable = mkEnableOption "enable kitty terminal";
|
||||
@@ -9,10 +12,9 @@ with lib;
|
||||
type = types.str;
|
||||
default = "DejaVu Sans";
|
||||
};
|
||||
package = mkOption {
|
||||
type = types.package;
|
||||
default = pkgs.dejavu_fonts;
|
||||
};
|
||||
|
||||
package = mkOpt types.package pkgs.dejavu_fonts "Default font package";
|
||||
|
||||
size = mkOption {
|
||||
type = with types; int;
|
||||
default = 12;
|
||||
|
||||
Reference in New Issue
Block a user