17 lines
240 B
Nix
17 lines
240 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./default.nix
|
|
];
|
|
boot.binfmt.emulatedSystems = ["aarch64-linux"];
|
|
deployment = {
|
|
tags = ["workstation" "intel"];
|
|
allowLocalDeployment = true;
|
|
};
|
|
}
|