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

29 lines
694 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 ];
};
# "hoyden" = { config, pkgs, lib, ... }: {
# deployment.targetUser = "josiah";
# deployment.targetHost = "hoyden";
# # Import seraph configuration.nix
# imports = [ ../../hosts/hoyden/configuration.nix ];
# };
}