feat: support aarch64-linux architecture in home-manager configuration

This commit is contained in:
Menno van Leeuwen 2025-03-11 10:19:25 +01:00
parent 8c3a130e07
commit a7b9dd4102
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE

View File

@ -19,7 +19,7 @@
home-manager,
}:
let
system = "x86_64-linux";
system = if builtins.currentSystem == "aarch64-linux" then "aarch64-linux" else "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;