blob: b865415bc8645ca82778011016995dd9a2b684da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
[sources.nixos]
name = "NixOS"
enable = true
type = "channel"
channel = "nixos-unstable"
import-path = "nixos/release.nix"
attribute = "options"
output-path = "share/doc/nixos/options.json"
[sources.repo]
type = "github"
owner = "NixOS"
repo = "nixpkgs"
[sources.darwin]
name = "darwin"
enable = true
type = "channel"
channel = "darwin"
import-path = "release.nix"
attribute = "options"
output-path = "share/doc/darwin/options.json"
[sources.repo]
type = "github"
owner = "LnL7"
repo = "nix-darwin"
[sources.home-manager]
name = "home-manager"
enable = true
type = "channel"
channel = "home-manager"
import-path = "default.nix"
attribute = "docs.json"
output-path = "share/doc/home-manager/options.json"
[sources.repo]
type = "github"
owner = "nix-community"
repo = "home-manager"
|