desktop is building I guess, idk, need to start commiting stuff eventually lmao
This commit is contained in:
27
modules/home/desktop/extra/kitty/options.nix
Normal file
27
modules/home/desktop/extra/kitty/options.nix
Normal file
@@ -0,0 +1,27 @@
|
||||
{ lib, namespace, ... }:
|
||||
with lib;
|
||||
{
|
||||
options.${namespace}.desktop.extra.kitty = {
|
||||
enable = mkEnableOption "enable kitty terminal";
|
||||
|
||||
font = {
|
||||
name = mkOption {
|
||||
type = types.str;
|
||||
default = "DejaVu Sans";
|
||||
};
|
||||
package = mkOption {
|
||||
type = types.package;
|
||||
default = pkgs.dejavu_fonts;
|
||||
};
|
||||
size = mkOption {
|
||||
type = with types; null || signed integer || floating point number;
|
||||
default = 8;
|
||||
};
|
||||
};
|
||||
|
||||
theme = mkOption {
|
||||
type = types.attrs;
|
||||
default = import ../../theme/nord.nix;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user