18 lines
409 B
Nix
18 lines
409 B
Nix
# NixOps configuration for paidh-ceithir
|
|
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [../networks/pi3B_rack.nix];
|
|
|
|
# Comment out deployment when building the SD Image.
|
|
deployment.targetHost = "10.42.0.204";
|
|
networking.hostName = "paidh-ceithir"; # Define your hostname.
|
|
|
|
environment.systemPackages = with pkgs; [];
|
|
|
|
system.stateVersion = "20.09"; # The version of NixOS originally installed
|
|
}
|