Skip to content

Commit

Permalink
docs: Prefer pkgs.system
Browse files Browse the repository at this point in the history
  • Loading branch information
donovanglover committed Aug 8, 2023
1 parent 6c7f7cc commit 240f5d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ Run native wine applications inside declarative systemd-nspawn containers. `saka
See [`wine.nix`](https://github.com/donovanglover/nix-config/blob/master/containers/wine.nix) in my nix-config for an example.

### Step 3: Add sakaya to systemPackages
### Step 3: Add sakaya to `systemPackages`

```nix
{ sakaya, ... }:
{ sakaya, pkgs, ... }:
{
environment.systemPackages = [
sakaya.packages."x86_64-linux".sakaya
environment.systemPackages = with pkgs; [
sakaya.packages.${pkgs.system}.sakaya
];
}
```
Expand Down

0 comments on commit 240f5d6

Please sign in to comment.