defaults.toml (view raw)
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | DataPath = './data' LogLevel = 'INFO' [Web] ListenAddress = 'localhost' Port = 3000 SentryDSN = '' Environment = 'development' ExtraHeadHTML = '' [Web.ContentSecurityPolicy] base-uri = [] block-all-mixed-content = false child-src = [] connect-src = [] default-src = ["'self'"] font-src = [] form-action = [] frame-ancestors = [] frame-src = [] img-src = [] manifest-src = [] media-src = [] navigate-to = [] object-src = [] plugin-types = [] prefetch-src = [] referrer = '' report-to = '' report-uri = '' require-sri-for = [] require-trusted-types-for = [] sandbox = '' script-src = [] script-src-attr = [] script-src-elem = [] style-src = [] style-src-attr = [] style-src-elem = [] trusted-types = [] upgrade-insecure-requests = false worker-src = [] [Web.BaseURL] Scheme = 'http' Opaque = '' Host = 'localhost:3000' Path = '' RawPath = '' OmitHost = false ForceQuery = false RawQuery = '' Fragment = '' RawFragment = '' [Web.Headers] x-content-type-options = 'nosniff' [Importer] UpdateAt = 04:00:00 [Importer.Sources] [Importer.Sources.darwin] Name = 'Darwin' Key = 'darwin' Enable = false Fetcher = 1 Importer = 2 Channel = 'darwin' URL = 'https://github.com/LnL7/nix-darwin/archive/master.tar.gz' Attribute = 'options' ImportPath = 'release.nix' FetchTimeout = 300000000000 ImportTimeout = 900000000000 OutputPath = 'share/doc/darwin' [Importer.Sources.darwin.Repo] Type = 'github' Owner = 'LnL7' Repo = 'nix-darwin' Revision = '' [Importer.Sources.home-manager] Name = 'Home Manager' Key = 'home-manager' Enable = false Fetcher = 1 Importer = 2 Channel = 'home-manager' URL = 'https://github.com/nix-community/home-manager/archive/master.tar.gz' Attribute = 'docs.json' ImportPath = 'default.nix' FetchTimeout = 300000000000 ImportTimeout = 900000000000 OutputPath = 'share/doc/home-manager' [Importer.Sources.home-manager.Repo] Type = 'github' Owner = 'nix-community' Repo = 'home-manager' Revision = '' [Importer.Sources.nixos] Name = 'NixOS' Key = 'nixos' Enable = true Fetcher = 1 Importer = 2 Channel = 'nixpkgs' URL = 'https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz' Attribute = 'options' ImportPath = 'nixos/release.nix' FetchTimeout = 300000000000 ImportTimeout = 900000000000 OutputPath = 'share/doc/nixos' [Importer.Sources.nixos.Repo] Type = 'github' Owner = 'NixOS' Repo = 'nixpkgs' Revision = '' [Importer.Sources.nixpkgs] Name = 'Nix Packages' Key = 'nixpkgs' Enable = true Fetcher = 2 Importer = 1 Channel = 'nixos-unstable' URL = '' Attribute = '' ImportPath = '' FetchTimeout = 300000000000 ImportTimeout = 900000000000 OutputPath = 'packages.json.br' [Importer.Sources.nixpkgs.Repo] Type = 'github' Owner = 'NixOS' Repo = 'nixpkgs' Revision = '' [Importer.Timeout] |