Link: https://github.com/nix-community/stylix/pull/2041 Link: https://github.com/nix-community/stylix/pull/1976#discussion_r2539186937 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
23 lines
476 B
Nix
23 lines
476 B
Nix
{ lib, ... }:
|
|
let
|
|
autoload = import ../autoload.nix { inherit lib; } "droid";
|
|
in
|
|
{
|
|
imports = [
|
|
./fonts.nix
|
|
./palette.nix
|
|
../colors.nix
|
|
../fonts.nix
|
|
../home-manager-integration.nix
|
|
../opacity.nix
|
|
../palette.nix
|
|
../pixel.nix
|
|
../target.nix
|
|
../overlays.nix
|
|
../ordering.nix
|
|
]
|
|
++ autoload;
|
|
|
|
# See https://github.com/nix-community/nix-on-droid/issues/436
|
|
options.lib = lib.mkOption { type = with lib.types; attrsOf attrs; };
|
|
}
|