Link: https://github.com/nix-community/stylix/pull/1700 Reviewed-by: awwpotato <awwpotato@voidq.com>
9 lines
200 B
Nix
9 lines
200 B
Nix
args:
|
|
{ config, lib, ... }:
|
|
{
|
|
imports = [ (lib.modules.importApply ../palette.nix args) ];
|
|
|
|
config = lib.mkIf config.stylix.enable {
|
|
environment.etc = config.stylix.generated.fileTree;
|
|
};
|
|
}
|