This commit is contained in:
Sacabambaspis 2024-03-17 21:34:00 +08:00 committed by GitHub
parent d710962095
commit 490be22f0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 8 additions and 8 deletions

View file

@ -252,7 +252,7 @@ So how to use this method in Flakes? The example `flake.nix` is as follows:
system = "x86_64-linux";
modules = [
{
nigpkgs.crossSystem = {
nixpkgs.crossSystem = {
config = "riscv64-unknown-linux-gnu";
};
@ -304,7 +304,7 @@ follows:
};
modules = [
{
nigpkgs.crossSystem = {
nixpkgs.crossSystem = {
config = "riscv64-unknown-linux-gnu";
};
}

View file

@ -260,7 +260,7 @@ For example, we can directly install this wrapper through NixOS's
`environment.systemPackages`, and then execute it directly:
```nix
{pkgs, lib, ...}{
{pkgs, lib, ...}:{
environment.systemPackages = [
# Install the wrapper into the system
@ -279,7 +279,7 @@ For example, we can directly install this wrapper through NixOS's
mkdir -p $out/bin/
ln -s ${pkgs.nushell}/bin/nu $out/bin/dev-shell
wrapProgram $out/bin/dev-shell --prefix PATH : ${pkgs.lib.makeBinPath packages}
'';)
'')
];
}
```

View file

@ -226,7 +226,7 @@ nix-repl> pkgs.pkgsCross.riscv64.stdenv.cc
system = "x86_64-linux";
modules = [
{
nigpkgs.crossSystem = {
nixpkgs.crossSystem = {
config = "riscv64-unknown-linux-gnu";
};
@ -276,7 +276,7 @@ nix-repl> pkgs.pkgsCross.riscv64.stdenv.cc
};
modules = [
{
nigpkgs.crossSystem = {
nixpkgs.crossSystem = {
config = "riscv64-unknown-linux-gnu";
};
}

View file

@ -257,7 +257,7 @@ session可以在其中正常使用 `node` `pnpm` 命令.
过 NixOS 的 `environment.systemPackages` 来安装这个 wrapper然后直接执行它
```nix
{pkgs, lib, ...}{
{pkgs, lib, ...}:{
environment.systemPackages = [
# 将 dev-shell 安装到系统环境中
@ -276,7 +276,7 @@ session可以在其中正常使用 `node` `pnpm` 命令.
mkdir -p $out/bin/
ln -s ${pkgs.nushell}/bin/nu $out/bin/dev-shell
wrapProgram $out/bin/dev-shell --prefix PATH : ${pkgs.lib.makeBinPath packages}
'';)
'')
];
}
```