16 lines
166 B
Nix
16 lines
166 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./default.nix
|
|
];
|
|
deployment = {
|
|
targetHost = "nixos";
|
|
tags = ["arm"];
|
|
};
|
|
}
|