nix/nixpkgs.nix: remove hardcoded hostPlatform
this is done anyways in hosts/default.nix
This commit is contained in:
parent
a28714dbab
commit
09824b2a0a
2 changed files with 1 additions and 2 deletions
|
@ -56,7 +56,7 @@ in {
|
||||||
hostname = "hermit";
|
hostname = "hermit";
|
||||||
};
|
};
|
||||||
tower = mkSystem {
|
tower = mkSystem {
|
||||||
system = "aarch_64-linux";
|
system = "aarch64-linux";
|
||||||
hostname = "tower";
|
hostname = "tower";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
# Configuration reference:
|
# Configuration reference:
|
||||||
# <https://nixos.org/manual/nixpkgs/unstable/#chap-packageconfig>
|
# <https://nixos.org/manual/nixpkgs/unstable/#chap-packageconfig>
|
||||||
hostPlatform = "x86_64-linux";
|
|
||||||
config = {
|
config = {
|
||||||
# Disallow broken packages to be built. allowBroken = false;
|
# Disallow broken packages to be built. allowBroken = false;
|
||||||
allowUnsupportedSystem = true;
|
allowUnsupportedSystem = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue