From afcfed6fd2a51615cd63aa7fa7608d670e7b61e5 Mon Sep 17 00:00:00 2001 From: NAHO <90870942+trueNAHO@users.noreply.github.com> Date: Sun, 10 Aug 2025 20:37:56 +0200 Subject: [PATCH] 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 --- doc/src/installation.md | 8 ++++---- doc/src/modules.md | 5 +++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/doc/src/installation.md b/doc/src/installation.md index 0acf0432..88768647 100644 --- a/doc/src/installation.md +++ b/doc/src/installation.md @@ -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"; }; }; diff --git a/doc/src/modules.md b/doc/src/modules.md index a5b2f6ba..4ec95e52 100644 --- a/doc/src/modules.md +++ b/doc/src/modules.md @@ -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.