20 lines
375 B
Nix
20 lines
375 B
Nix
# NixOps configuration for airgead
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
imports =
|
|
[
|
|
../networks/linode.nix
|
|
../profiles/cardano-node.nix
|
|
../secrets/airgead.nix
|
|
];
|
|
|
|
deployment.targetHost = "172.105.187.96";
|
|
|
|
networking.hostName = "airgead"; # Define your hostname.
|
|
|
|
system.stateVersion = "20.03"; # The version of NixOS originally installed
|
|
}
|