Merge pull request #300705 from JulienMalka/official-wiki
This commit is contained in:
commit
d4f44d1cb1
6 changed files with 7 additions and 7 deletions
|
@ -29,8 +29,8 @@
|
||||||
* [Discourse Forum](https://discourse.nixos.org/)
|
* [Discourse Forum](https://discourse.nixos.org/)
|
||||||
* [Matrix Chat](https://matrix.to/#/#community:nixos.org)
|
* [Matrix Chat](https://matrix.to/#/#community:nixos.org)
|
||||||
* [NixOS Weekly](https://weekly.nixos.org/)
|
* [NixOS Weekly](https://weekly.nixos.org/)
|
||||||
* [Community-maintained wiki](https://nixos.wiki/)
|
* [Official wiki](https://wiki.nixos.org/)
|
||||||
* [Community-maintained list of ways to get in touch](https://nixos.wiki/wiki/Get_In_Touch#Chat) (Discord, Telegram, IRC, etc.)
|
* [Community-maintained list of ways to get in touch](https://wiki.nixos.org/wiki/Get_In_Touch#Chat) (Discord, Telegram, IRC, etc.)
|
||||||
|
|
||||||
# Other Project Repositories
|
# Other Project Repositories
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ However, it is possible and not-uncommon to create [impermanent systems], whose
|
||||||
`rootfs` is either a `tmpfs` or reset during boot. While NixOS itself supports
|
`rootfs` is either a `tmpfs` or reset during boot. While NixOS itself supports
|
||||||
this kind of configuration, special care needs to be taken.
|
this kind of configuration, special care needs to be taken.
|
||||||
|
|
||||||
[impermanent systems]: https://nixos.wiki/wiki/Impermanence
|
[impermanent systems]: https://wiki.nixos.org/wiki/Impermanence
|
||||||
|
|
||||||
|
|
||||||
```{=include=} sections
|
```{=include=} sections
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
, isInsiders ? false
|
, isInsiders ? false
|
||||||
# sourceExecutableName is the name of the binary in the source archive over
|
# sourceExecutableName is the name of the binary in the source archive over
|
||||||
# which we have no control and it is needed to run the insider version as
|
# which we have no control and it is needed to run the insider version as
|
||||||
# documented in https://nixos.wiki/wiki/Visual_Studio_Code#Insiders_Build
|
# documented in https://wiki.nixos.org/wiki/Visual_Studio_Code#Insiders_Build
|
||||||
# On MacOS the insider binary is still called code instead of code-insiders as
|
# On MacOS the insider binary is still called code instead of code-insiders as
|
||||||
# of 2023-08-06.
|
# of 2023-08-06.
|
||||||
, sourceExecutableName ? "code" + lib.optionalString (isInsiders && stdenv.isLinux) "-insiders"
|
, sourceExecutableName ? "code" + lib.optionalString (isInsiders && stdenv.isLinux) "-insiders"
|
||||||
|
|
|
@ -33,7 +33,7 @@ stdenv.mkDerivation {
|
||||||
# of the nix store -- but ekam builds capnp locally and links against it,
|
# of the nix store -- but ekam builds capnp locally and links against it,
|
||||||
# so that causes the build to fail. So, we turn this off.
|
# so that causes the build to fail. So, we turn this off.
|
||||||
#
|
#
|
||||||
# See: https://nixos.wiki/wiki/Development_environment_with_nix-shell#Troubleshooting
|
# See: https://wiki.nixos.org/wiki/Development_environment_with_nix-shell#Troubleshooting
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
unset NIX_ENFORCE_PURITY
|
unset NIX_ENFORCE_PURITY
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -100,7 +100,7 @@ in rec {
|
||||||
) (builtins.attrNames pkgConfig);
|
) (builtins.attrNames pkgConfig);
|
||||||
|
|
||||||
# build-time JSON generation to avoid IFD
|
# build-time JSON generation to avoid IFD
|
||||||
# see https://nixos.wiki/wiki/Import_From_Derivation
|
# see https://wiki.nixos.org/wiki/Import_From_Derivation
|
||||||
workspaceJSON = pkgs.runCommand "${name}-workspace-package.json"
|
workspaceJSON = pkgs.runCommand "${name}-workspace-package.json"
|
||||||
{
|
{
|
||||||
nativeBuildInputs = [ pkgs.jq ];
|
nativeBuildInputs = [ pkgs.jq ];
|
||||||
|
|
|
@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
buildInputs = [ gems ruby ];
|
buildInputs = [ gems ruby ];
|
||||||
|
|
||||||
# See: https://nixos.wiki/wiki/Packaging/Ruby
|
# See: https://wiki.nixos.org/wiki/Packaging/Ruby
|
||||||
#
|
#
|
||||||
# Put library content under lib/polar and the raw scripts under share/polar.
|
# Put library content under lib/polar and the raw scripts under share/polar.
|
||||||
# Then, wrap the scripts so that they use the correct ruby environment and put
|
# Then, wrap the scripts so that they use the correct ruby environment and put
|
||||||
|
|
Loading…
Reference in a new issue