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.