11.stylix/stylix/droid/palette.nix
bricked e3233ead63
stylix: init droid (#778)
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>
2025-03-11 16:10:23 +01:00

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;
};
}