stylix: flake output homeManagerModules has been renamed to homeModules and will be removed after 26.05.
This commit is contained in:
parent
aac98fda2e
commit
e89cd6e91d
1 changed files with 72 additions and 63 deletions
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue