23 lines
480 B
Nix
23 lines
480 B
Nix
# NixOps configuration for ceitidh
|
|
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../networks/pi3B_rack.nix
|
|
../profiles/cyclone-ibis.nix
|
|
];
|
|
|
|
# Comment out deployment when building the SD Image.
|
|
deployment.targetHost = "10.42.0.213";
|
|
networking.hostName = "ceitidh"; # Define your hostname.
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gnupg # GPL OpenPGP implementation
|
|
];
|
|
|
|
system.stateVersion = "22.05"; # The version of NixOS originally installed
|
|
}
|