diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-03-11 09:08:32 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-03-11 09:08:32 +0100 |
| commit | c44e853f0a71b56cc0a2d66b55ed12fc1fa38048 (patch) | |
| tree | 0e6e94ff426bb7b53749bd59eba4351674b3ee7f /flake.nix | |
| parent | 073f516d74404bc77e056204ce3510fd391c54f1 (diff) | |
webtray: update
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -26,10 +26,12 @@ { nixpkgs, nixpkgs-unstable, webtray, ... }@attrs: let system = "x86_64-linux"; - pkgs = import nixpkgs { inherit system; }; + pkgs = import nixpkgs { + stdenv.hostPlatform = { inherit system; }; + }; overlay-unstable = final: prev: { unstable = import nixpkgs-unstable { - inherit system; + system = prev.stdenv.hostPlatform.system; config.allowUnfree = true; }; }; |