Only include Linux builds in the NixOS channel
This commit is contained in:
parent
8881d1a920
commit
1b0acab1e5
|
@ -1,4 +1,11 @@
|
||||||
|
{ nixpkgs, officialRelease }:
|
||||||
|
|
||||||
{
|
{
|
||||||
nixos = import ./release.nix;
|
nixos = import ./release.nix;
|
||||||
nixpkgs = import <nixpkgs/pkgs/top-level/release.nix>;
|
nixpkgs =
|
||||||
|
import <nixpkgs/pkgs/top-level/release.nix> {
|
||||||
|
inherit nixpkgs officialRelease;
|
||||||
|
# Only do Linux builds.
|
||||||
|
supportedSystems = [ "x86_64-linux" "i686-linux" ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue