feat: support aarch64-linux architecture in home-manager configuration
This commit is contained in:
parent
8c3a130e07
commit
a7b9dd4102
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user