11.stylix/stylix/hm/default.nix
sntx 07795247c2
Add cursor support (#172)
Co-authored-by: Daniel Thwaites <danthwaites30@btinternet.com>
2023-11-01 13:40:25 +00:00

17 lines
352 B
Nix

inputs:
{ palette-generator, base16 }:
{ config, lib, ... }:
let
autoload = import ../autoload.nix { inherit lib; } "hm";
in {
imports = [
../pixel.nix
../target.nix
../opacity.nix
./cursor.nix
./fonts.nix
(import ./palette.nix { inherit palette-generator base16; })
(import ../templates.nix inputs)
] ++ autoload;
}