11.stylix/stylix/hm/default.nix
Bernardo Meurer b42555850b
Move all templates into flake inputs (#165)
This reduces our reliance on import-from-derivation, so evaluation is faster.
2023-10-10 10:44:54 +01:00

16 lines
335 B
Nix

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