27 lines
554 B
Nix
27 lines
554 B
Nix
{
|
|
withSystem,
|
|
ook,
|
|
...
|
|
}: let
|
|
inherit (ook.lib.builders) mkServer;
|
|
in {
|
|
flake.nixosConfigurations = {
|
|
ooknode = mkServer {
|
|
inherit withSystem;
|
|
system = "x86_64-linux";
|
|
hostname = "ooknode";
|
|
domain = "ooknet.org";
|
|
type = "vm";
|
|
profile = "linode";
|
|
services = ["website" "forgejo"];
|
|
};
|
|
ooksmedia = mkServer {
|
|
inherit withSystem;
|
|
system = "x86_64-linux";
|
|
hostname = "ooksmedia";
|
|
domain = "ooknet.org";
|
|
type = "desktop";
|
|
services = ["ookflix"];
|
|
};
|
|
};
|
|
}
|