Closes: https://github.com/danth/stylix/issues/458 Link: https://github.com/danth/stylix/pull/603 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> Tested-by: Kamron Bhavnagri <kamwithk@tuta.io>
18 lines
363 B
Nix
18 lines
363 B
Nix
inputs:
|
|
{ palette-generator, base16 }:
|
|
{ lib, ... }:
|
|
|
|
let
|
|
autoload = import ../autoload.nix { inherit lib inputs; } "hm";
|
|
in {
|
|
imports = [
|
|
../pixel.nix
|
|
../target.nix
|
|
../opacity.nix
|
|
./cursor.nix
|
|
./fonts.nix
|
|
./icon.nix
|
|
(import ./palette.nix { inherit palette-generator base16; })
|
|
(import ../templates.nix inputs)
|
|
] ++ autoload;
|
|
}
|