16 lines
189 B
Nix
16 lines
189 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./default.nix
|
|
];
|
|
deployment = {
|
|
tags = ["workstation" "intel"];
|
|
allowLocalDeployment = true;
|
|
};
|
|
}
|