stylix: flake output homeManagerModules has been renamed to homeModules and will be removed after 26.05.

This commit is contained in:
William 2026-02-11 18:13:30 -03:00
parent aac98fda2e
commit e89cd6e91d

View file

@ -1,13 +1,22 @@
{ ... }: { ... }:
{ {
flake.modules = { flake.modules = {
nixos.stylix = { inputs, ... }: { nixos.stylix =
{ inputs, ... }:
{
imports = [ inputs.stylix.nixosModules.stylix ]; imports = [ inputs.stylix.nixosModules.stylix ];
}; };
homeManager.stylix = { config, inputs, pkgs, ... }: { homeManager.stylix =
{
config,
inputs,
pkgs,
...
}:
{
imports = [ imports = [
inputs.stylix.homeManagerModules.stylix inputs.stylix.homeModules.stylix
inputs.zen-browser.homeModules.beta inputs.zen-browser.homeModules.beta
]; ];