18 lines
302 B
Nix
18 lines
302 B
Nix
{
|
|
withSystem,
|
|
ook,
|
|
...
|
|
}: let
|
|
inherit (ook.lib.builders) mkServer;
|
|
in {
|
|
flake.nixosConfigurations = {
|
|
ooknode = mkServer {
|
|
inherit withSystem;
|
|
system = "x86_64-linux";
|
|
hostname = "ooknode";
|
|
type = "vm";
|
|
profile = "linode";
|
|
services = [];
|
|
};
|
|
};
|
|
}
|