You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
adc/nixos-configs/ops/home/network.nix

41 lines
980 B

# ops/home/network.nix
{
# Configuration for the network in general.
network = { description = "home.jowj.net cluster definition"; };
# This specifies the configuration for
# `seraph` as a NixOS module.
# "seraph" = { config, pkgs, lib, ... }: {
# deployment.targetUser = "alice";
# deployment.targetHost = "seraph";
# # Import seraph configuration.nix
# imports = [
# ../../hosts/seraph/configuration.nix
# ../../common ];
# };
"exgod" = { config, pkgs, lib, ... }: {
deployment.targetUser = "alice";
deployment.targetHost = "exgod";
# Import exgod configuration.nix
imports = [
../../hosts/exgod/configuration.nix
../../common ];
};
"hoyden" = { config, pkgs, lib, ... }: {
deployment.targetUser = "alice";
deployment.targetHost = "hoyden";
# Import seraph configuration.nix
imports = [
../../hosts/hoyden/configuration.nix
../../common ];
};
}