10 lines
223 B
Nix
10 lines
223 B
Nix
{stylix, pkgs, config, lib, ...}: {
|
|
options.stylix.enable = lib.mkEnableOption "Enable Stylix";
|
|
|
|
config = lib.mkIf config.stylix.enable {
|
|
imports = [
|
|
stylix.nixosModules.stylix
|
|
./style.nix
|
|
];
|
|
};
|
|
}
|