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

This commit is contained in:
asepharyana
2026-08-01 18:03:44 +07:00
parent 0df6c35d5a
commit f0787b5f23
+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;