diff options
author | Robert Helgesson | 2022-08-04 22:44:47 +0200 |
---|---|---|
committer | Robert Helgesson | 2022-08-04 22:44:47 +0200 |
commit | 9e79e4028a8af2479233b5968f48f7f8d06376d1 (patch) | |
tree | ae57b487d36faa6b5d3da8e4016248508a26fb67 /flake.nix | |
parent | 6564bee9ee7390f1d4612b1ff654ac82a8b14d17 (diff) |
Fetch system from `stdenv.hostPlatform`
The top-level `system` attribute has been deprecated for quite a
while. See
https://github.com/NixOS/nixpkgs/commit/4246d6ce21d2d8d33e2d30f42b3d9d446c5dc143
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ { overlay = final: prev: let - system = final.system; + system = final.stdenv.hostPlatform.system; darwinOptions = final.lib.optionalAttrs final.stdenv.isDarwin { buildInputs = with final.darwin.apple_sdk.frameworks; [ SystemConfiguration |