Merge pull request #300705 from JulienMalka/official-wiki

authored by Julien Malka and committed by GitHub d4f44d1c 10d3c44c

+7 -7
+2 -2
README.md
··· 29 * [Discourse Forum](https://discourse.nixos.org/) 30 * [Matrix Chat](https://matrix.to/#/#community:nixos.org) 31 * [NixOS Weekly](https://weekly.nixos.org/) 32 - * [Community-maintained wiki](https://nixos.wiki/) 33 - * [Community-maintained list of ways to get in touch](https://nixos.wiki/wiki/Get_In_Touch#Chat) (Discord, Telegram, IRC, etc.) 34 35 # Other Project Repositories 36
··· 29 * [Discourse Forum](https://discourse.nixos.org/) 30 * [Matrix Chat](https://matrix.to/#/#community:nixos.org) 31 * [NixOS Weekly](https://weekly.nixos.org/) 32 + * [Official wiki](https://wiki.nixos.org/) 33 + * [Community-maintained list of ways to get in touch](https://wiki.nixos.org/wiki/Get_In_Touch#Chat) (Discord, Telegram, IRC, etc.) 34 35 # Other Project Repositories 36
+1 -1
nixos/doc/manual/administration/system-state.chapter.md
··· 7 `rootfs` is either a `tmpfs` or reset during boot. While NixOS itself supports 8 this kind of configuration, special care needs to be taken. 9 10 - [impermanent systems]: https://nixos.wiki/wiki/Impermanence 11 12 13 ```{=include=} sections
··· 7 `rootfs` is either a `tmpfs` or reset during boot. While NixOS itself supports 8 this kind of configuration, special care needs to be taken. 9 10 + [impermanent systems]: https://wiki.nixos.org/wiki/Impermanence 11 12 13 ```{=include=} sections
+1 -1
pkgs/applications/editors/vscode/vscode.nix
··· 7 , isInsiders ? false 8 # sourceExecutableName is the name of the binary in the source archive over 9 # which we have no control and it is needed to run the insider version as 10 - # documented in https://nixos.wiki/wiki/Visual_Studio_Code#Insiders_Build 11 # On MacOS the insider binary is still called code instead of code-insiders as 12 # of 2023-08-06. 13 , sourceExecutableName ? "code" + lib.optionalString (isInsiders && stdenv.isLinux) "-insiders"
··· 7 , isInsiders ? false 8 # sourceExecutableName is the name of the binary in the source archive over 9 # which we have no control and it is needed to run the insider version as 10 + # documented in https://wiki.nixos.org/wiki/Visual_Studio_Code#Insiders_Build 11 # On MacOS the insider binary is still called code instead of code-insiders as 12 # of 2023-08-06. 13 , sourceExecutableName ? "code" + lib.optionalString (isInsiders && stdenv.isLinux) "-insiders"
+1 -1
pkgs/development/tools/build-managers/ekam/default.nix
··· 33 # of the nix store -- but ekam builds capnp locally and links against it, 34 # so that causes the build to fail. So, we turn this off. 35 # 36 - # See: https://nixos.wiki/wiki/Development_environment_with_nix-shell#Troubleshooting 37 preBuild = '' 38 unset NIX_ENFORCE_PURITY 39 '';
··· 33 # of the nix store -- but ekam builds capnp locally and links against it, 34 # so that causes the build to fail. So, we turn this off. 35 # 36 + # See: https://wiki.nixos.org/wiki/Development_environment_with_nix-shell#Troubleshooting 37 preBuild = '' 38 unset NIX_ENFORCE_PURITY 39 '';
+1 -1
pkgs/development/tools/yarn2nix-moretea/yarn2nix/default.nix
··· 100 ) (builtins.attrNames pkgConfig); 101 102 # build-time JSON generation to avoid IFD 103 - # see https://nixos.wiki/wiki/Import_From_Derivation 104 workspaceJSON = pkgs.runCommand "${name}-workspace-package.json" 105 { 106 nativeBuildInputs = [ pkgs.jq ];
··· 100 ) (builtins.attrNames pkgConfig); 101 102 # build-time JSON generation to avoid IFD 103 + # see https://wiki.nixos.org/wiki/Import_From_Derivation 104 workspaceJSON = pkgs.runCommand "${name}-workspace-package.json" 105 { 106 nativeBuildInputs = [ pkgs.jq ];
+1 -1
pkgs/tools/misc/polar/default.nix
··· 33 ''; 34 buildInputs = [ gems ruby ]; 35 36 - # See: https://nixos.wiki/wiki/Packaging/Ruby 37 # 38 # Put library content under lib/polar and the raw scripts under share/polar. 39 # Then, wrap the scripts so that they use the correct ruby environment and put
··· 33 ''; 34 buildInputs = [ gems ruby ]; 35 36 + # See: https://wiki.nixos.org/wiki/Packaging/Ruby 37 # 38 # Put library content under lib/polar and the raw scripts under share/polar. 39 # Then, wrap the scripts so that they use the correct ruby environment and put