18 lines
422 B
Nix
18 lines
422 B
Nix
# NixOps configuration for pàidh-dha
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../networks/pi3B_rack.nix
|
|
../profiles/transmission.nix
|
|
../secrets/transmission.nix
|
|
];
|
|
|
|
# Comment out deployment when building the SD Image.
|
|
deployment.targetHost = "10.42.0.202";
|
|
networking.hostName = "paidh-dha"; # Define your hostname.
|
|
|
|
system.stateVersion = "20:09"; # The version of NixOS originally installed
|
|
}
|