15 lines
163 B
Nix
15 lines
163 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./default.nix
|
|
];
|
|
deployment = {
|
|
tags = ["server" "intel" "vps" "web"];
|
|
};
|
|
}
|