mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 19:46:07 +01:00
drop i686 support without simplifying code
This commit is contained in:
parent
c53afdbcbb
commit
7aeb529aab
8 changed files with 13 additions and 15 deletions
|
|
@ -12,8 +12,8 @@ with lib;
|
|||
|
||||
build = {
|
||||
arch = mkOption {
|
||||
type = types.enum [ "aarch64" "i686" ];
|
||||
default = if pkgs.stdenv.isAarch64 then "aarch64" else "i686";
|
||||
type = types.enum [ "aarch64" ];
|
||||
default = "aarch64";
|
||||
internal = true;
|
||||
description = "Destination arch.";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue