Link: https://github.com/nix-community/stylix/pull/1823 Reviewed-by: awwpotato <awwpotato@voidq.com> Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> Reviewed-by: Daniel Thwaites <danth@danth.me>
6 lines
130 B
Nix
6 lines
130 B
Nix
{ config, lib, ... }:
|
|
{
|
|
config = lib.mkIf config.stylix.enable {
|
|
environment.etc = config.stylix.generated.fileTree;
|
|
};
|
|
}
|