nix/nixpkgs.nix: remove hardcoded hostPlatform

this is done anyways in hosts/default.nix
This commit is contained in:
Charlie Root 2025-03-02 19:43:46 +01:00
commit 09824b2a0a
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw
2 changed files with 1 additions and 2 deletions

View file

@ -56,7 +56,7 @@ in {
hostname = "hermit";
};
tower = mkSystem {
system = "aarch_64-linux";
system = "aarch64-linux";
hostname = "tower";
};
}

View file

@ -6,7 +6,6 @@
nixpkgs = {
# Configuration reference:
# <https://nixos.org/manual/nixpkgs/unstable/#chap-packageconfig>
hostPlatform = "x86_64-linux";
config = {
# Disallow broken packages to be built. allowBroken = false;
allowUnsupportedSystem = true;