doc: update github:danth/stylix URLs to github:nix-community/stylix (#1835)

Link: https://github.com/nix-community/stylix/pull/1835
Reviewed-by: Daniel Thwaites <danth@danth.me>
This commit is contained in:
NAHO 2025-08-10 20:37:56 +02:00 committed by GitHub
parent 63bb34a66a
commit afcfed6fd2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 6 deletions

View file

@ -11,7 +11,7 @@ screens, and display managers.
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
stylix = {
url = "github:danth/stylix";
url = "github:nix-community/stylix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
@ -70,7 +70,7 @@ to NixOS via [Flakes][nix-flakes].
inputs.nixpkgs.follows = "nixpkgs";
};
stylix = {
url = "github:danth/stylix";
url = "github:nix-community/stylix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
@ -113,7 +113,7 @@ similar fashion to NixOS via [Flakes][nix-flakes].
inputs.nixpkgs.follows = "nixpkgs";
};
stylix = {
url = "github:danth/stylix";
url = "github:nix-community/stylix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
@ -160,7 +160,7 @@ by someone else.
inputs.nixpkgs.follows = "nixpkgs";
};
stylix = {
url = "github:danth/stylix";
url = "github:nix-community/stylix";
inputs.nixpkgs.follows = "nixpkgs";
};
};

View file

@ -43,7 +43,7 @@ folder, using any name which is not on the list above.
Modules should be created using the `mkTarget` function whenever possible (see
the [`/stylix/mk-target.nix`](
https://github.com/danth/stylix/blob/-/stylix/mk-target.nix) in-source
https://github.com/nix-community/stylix/blob/-/stylix/mk-target.nix) in-source
documentation for more details):
```nix
@ -62,7 +62,8 @@ mkTarget {
> [!IMPORTANT]
> The `mkTarget` argument is only available to modules imported by Stylix's
> [autoload system](https://github.com/danth/stylix/blob/-/stylix/autoload.nix),
> [autoload
> system](https://github.com/nix-community/stylix/blob/-/stylix/autoload.nix),
> e.g., `modules/«target»/«platform».nix` modules.
>
> I.e., it is not available to normal modules imported via the `imports` list.