fix(nix): restrict flake to x86_64-linux (nixpkgs 26.11 dropped darwin)

This commit is contained in:
asepharyana
2026-08-01 18:03:50 +07:00
parent 07f547eea8
commit 0e0fd5df05
+1 -1
View File
@@ -11,7 +11,7 @@
}; };
outputs = { self, nixpkgs, flake-utils, rust-overlay }: outputs = { self, nixpkgs, flake-utils, rust-overlay }:
flake-utils.lib.eachDefaultSystem (system: flake-utils.lib.eachSystem [ "x86_64-linux" ] (system:
let let
overlays = [ (import rust-overlay) ]; overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs { inherit system overlays; }; pkgs = import nixpkgs { inherit system overlays; };