20 lines
331 B
Nix
20 lines
331 B
Nix
{
|
|
inputs,
|
|
myConfig,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.stylix.homeModules.stylix
|
|
];
|
|
stylix = {
|
|
enable = true;
|
|
# autoEnable = false;
|
|
image = ../../assets/Wallpapers/${myConfig.hyprland.wallpaper};
|
|
polarity = "dark";
|
|
# base16Scheme = lib.mkDefault {
|
|
# generator = "vibrant";
|
|
# };
|
|
};
|
|
}
|