mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-30 06:01:19 +00:00
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;
|
||||
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
Block a user