@@ -10,7 +10,7 @@ By default, these modules enable or disable themselves based on detected hardwar
10
10
For more information, see the [ docs] .
11
11
12
12
[ NixOS modules ] : https://wiki.nixos.org/wiki/NixOS_modules
13
- [ NixOS Facter ] : https://github.com/numtide /nixos-facter
13
+ [ NixOS Facter ] : https://github.com/nix-community /nixos-facter
14
14
[ NixOS Hardware ] : https://github.com/NixOS/nixos-hardware
15
15
[ docs ] : https://nix-community.github.io/nixos-facter-modules/
16
16
@@ -19,7 +19,7 @@ For more information, see the [docs].
19
19
To generate a hardware report run the following:
20
20
21
21
``` console
22
- $ nix --extra-experimental-features " flakes nix-command" run github:numtide /nixos-facter > facter.json
22
+ $ nix --extra-experimental-features " flakes nix-command" run github:nix-community /nixos-facter > facter.json
23
23
```
24
24
25
25
Then use the generated ` facter.json ` with the NixOS module as follows:
@@ -35,7 +35,7 @@ that part of the configuration yourself or take it from `nixos-generate-config`.
35
35
{
36
36
inputs = {
37
37
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
38
- nixos-facter-modules.url = "github:numtide /nixos-facter-modules";
38
+ nixos-facter-modules.url = "github:nix-community /nixos-facter-modules";
39
39
};
40
40
41
41
outputs =
@@ -70,7 +70,7 @@ that part of the configuration yourself or take it from `nixos-generate-config`.
70
70
{
71
71
imports = [
72
72
"${
73
- (builtins.fetchTarball { url = "https://github.com/numtide /nixos-facter-modules/"; })
73
+ (builtins.fetchTarball { url = "https://github.com/nix-community /nixos-facter-modules/"; })
74
74
}/modules/nixos/facter.nix"
75
75
];
76
76
0 commit comments