11.stylix/stylix/hm/default.nix
Flameopathic 3fce9fb038
treewide: propagate inputs and remove templates (#926)
Closes: https://github.com/danth/stylix/issues/238
Link: https://github.com/danth/stylix/pull/926

Reviewed-by: Daniel Thwaites <danth@danth.me>
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-03-09 15:46:36 +01:00

25 lines
740 B
Nix

inputs:
{ lib, ... }:
# Imported modules which define new options must use an absolute path based
# on ${inputs.self}, otherwise those options will not appear in the generated
# documentation.
let
autoload = import ../autoload.nix { inherit lib inputs; } "hm";
in
{
imports = [
"${inputs.self}/stylix/cursor.nix"
"${inputs.self}/stylix/fonts.nix"
"${inputs.self}/stylix/hm/cursor.nix"
"${inputs.self}/stylix/hm/fonts.nix"
"${inputs.self}/stylix/hm/icon.nix"
"${inputs.self}/stylix/hm/palette.nix"
"${inputs.self}/stylix/icon.nix"
"${inputs.self}/stylix/opacity.nix"
"${inputs.self}/stylix/palette.nix"
"${inputs.self}/stylix/pixel.nix"
"${inputs.self}/stylix/target.nix"
] ++ autoload;
}