feat: support aarch64-linux architecture in home-manager configuration
This commit is contained in:
@@ -19,7 +19,7 @@
|
|||||||
home-manager,
|
home-manager,
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
system = if builtins.currentSystem == "aarch64-linux" then "aarch64-linux" else "x86_64-linux";
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
inherit system;
|
inherit system;
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
|
Reference in New Issue
Block a user