stylix: init nixOnDroidModules.stylix module to support Nix-on-Droid Closes: https://github.com/danth/stylix/issues/775 Link: https://github.com/danth/stylix/pull/778 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> Reviewed-by: Daniel Thwaites <danth@danth.me>
10 lines
184 B
Nix
10 lines
184 B
Nix
args:
|
|
{ config, lib, ... }:
|
|
|
|
{
|
|
imports = [ (import ../palette.nix args) ];
|
|
|
|
config = lib.mkIf config.stylix.enable {
|
|
environment.etc = config.stylix.generated.fileTree;
|
|
};
|
|
}
|