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