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