temp fix for nix flake show
etc
This commit is contained in:
parent
3b13ec47f5
commit
1c8b2b205b
1 changed files with 4 additions and 1 deletions
|
@ -7,7 +7,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, idris2-pkgs, flake-utils }:
|
outputs = { self, nixpkgs, idris2-pkgs, flake-utils }:
|
||||||
let systems = [ "x86_64-darwin" "x86_64-linux" "i686-linux" ]; in
|
let systems = with flake-utils.lib.system;
|
||||||
|
# [ x86_64-darwin x86_64-linux i686-linux ]; # FIXME
|
||||||
|
[ x86_64-linux ];
|
||||||
|
in
|
||||||
flake-utils.lib.eachSystem systems (system:
|
flake-utils.lib.eachSystem systems (system:
|
||||||
let
|
let
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
|
|
Loading…
Reference in a new issue