module changes
This commit is contained in:
parent
b1fbf302a6
commit
fe34f6c78a
8 changed files with 43 additions and 21 deletions
|
@ -1,7 +1,34 @@
|
|||
_: {
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkOption;
|
||||
inherit (lib.types) package str int;
|
||||
in {
|
||||
imports = [
|
||||
./stylix.nix
|
||||
# ./qt.nix
|
||||
# ./gtk.nix
|
||||
];
|
||||
|
||||
options.modules.style = {
|
||||
cursor = {
|
||||
package = mkOption {
|
||||
type = package;
|
||||
default = pkgs.bibata-cursors;
|
||||
description = "Cursor package";
|
||||
};
|
||||
name = mkOption {
|
||||
type = str;
|
||||
default = "Bibata-Modern-Classic";
|
||||
description = "Cursor name";
|
||||
};
|
||||
size = mkOption {
|
||||
type = int;
|
||||
default = 32;
|
||||
description = "Cursor size";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue