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

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