2022-07-08 10:11:01 +00:00
|
|
|
# NixOps configuration for ceitidh
|
2019-06-27 01:42:58 +00:00
|
|
|
{
|
2022-03-07 14:26:15 +00:00
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: {
|
2022-07-08 10:11:01 +00:00
|
|
|
imports = [
|
|
|
|
../networks/pi3B_rack.nix
|
2022-07-25 07:19:24 +00:00
|
|
|
../profiles/cyclone-ibis.nix
|
2022-07-08 10:11:01 +00:00
|
|
|
];
|
2019-06-27 01:42:58 +00:00
|
|
|
|
2020-02-05 01:15:44 +00:00
|
|
|
# Comment out deployment when building the SD Image.
|
2022-07-11 05:52:41 +00:00
|
|
|
deployment.targetHost = "10.42.0.213";
|
2022-07-08 10:11:01 +00:00
|
|
|
networking.hostName = "ceitidh"; # Define your hostname.
|
2019-10-16 23:22:38 +00:00
|
|
|
|
2022-03-07 14:26:15 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
gnupg # GPL OpenPGP implementation
|
|
|
|
];
|
2019-12-09 06:18:58 +00:00
|
|
|
|
2022-07-08 10:11:01 +00:00
|
|
|
system.stateVersion = "22.05"; # The version of NixOS originally installed
|
2019-06-27 01:42:58 +00:00
|
|
|
}
|