Link: https://github.com/danth/stylix/pull/1185 Reviewed-by: Flameopathic <64027365+Flameopathic@users.noreply.github.com> Reviewed-by: Matt Sturgeon <matt@sturgeon.me.uk> Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
22 lines
604 B
Nix
22 lines
604 B
Nix
inputs:
|
|
{ lib, ... }:
|
|
|
|
let
|
|
autoload = import ../autoload.nix { inherit lib inputs; } "droid";
|
|
in
|
|
{
|
|
imports = [
|
|
"${inputs.self}/stylix/fonts.nix"
|
|
"${inputs.self}/stylix/home-manager-integration.nix"
|
|
"${inputs.self}/stylix/opacity.nix"
|
|
"${inputs.self}/stylix/palette.nix"
|
|
"${inputs.self}/stylix/pixel.nix"
|
|
"${inputs.self}/stylix/target.nix"
|
|
(lib.modules.importApply "${inputs.self}/stylix/overlays.nix" inputs)
|
|
] ++ autoload;
|
|
|
|
# See https://github.com/nix-community/nix-on-droid/issues/436
|
|
options.lib = lib.mkOption {
|
|
type = with lib.types; attrsOf attrs;
|
|
};
|
|
}
|