fix(nix): wrong machine in 158bd1d

This commit is contained in:
winston 2023-10-05 09:11:28 +02:00
parent adf1c91401
commit 2b7e623b1f
Signed by: winston
GPG key ID: 3786770EDBC2B481
2 changed files with 5 additions and 2 deletions

View file

@ -55,6 +55,4 @@
}; };
}; };
}; };
settings.nix.extra-platforms = ["x86_64-darwin" "aarch64-darwin"];
} }

View file

@ -3,4 +3,9 @@
networking.computerName = "sashimi"; networking.computerName = "sashimi";
networking.hostName = "sashimi"; networking.hostName = "sashimi";
nix.settings.extra-platforms = [
"aarch64-darwin"
"x86_64-darwin"
];
} }