48 lines
875 B
Nix
48 lines
875 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
config.fudo.hosts = {
|
|
atom = {
|
|
description = "Niten's toy laptop.";
|
|
enable-gui = false;
|
|
};
|
|
|
|
clunk = {
|
|
description = "rus.selby.ca gateway box.";
|
|
docker-server = true;
|
|
};
|
|
|
|
france = {
|
|
description = "Primary fudo.org server.";
|
|
docker-server = true;
|
|
};
|
|
|
|
lambda = {
|
|
description = "sea.fudo.org experiment server.";
|
|
docker-server = true;
|
|
};
|
|
|
|
nostromo = {
|
|
description = "sea.fudo.org gateway box and primary server.";
|
|
docker-server = true;
|
|
};
|
|
|
|
plato = {
|
|
description = "Niten's toy server.";
|
|
};
|
|
|
|
procul = {
|
|
description = "informis.land server.";
|
|
docker-server = true;
|
|
};
|
|
|
|
spark = {
|
|
description = "Niten's backup desktop.";
|
|
};
|
|
|
|
zbox = {
|
|
description = "Niten's primary desktop.";
|
|
};
|
|
};
|
|
}
|