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

This commit is contained in:
asepharyana
2026-08-01 18:03:41 +07:00
parent a0b3f7e9b2
commit 308be9f05a
+1 -1
View File
@@ -7,7 +7,7 @@
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
flake-utils.lib.eachSystem [ "x86_64-linux" ] (system:
let
pkgs = import nixpkgs { inherit system; };