Changes hostname to prevent conflict.

This commit is contained in:
Bailey Stevens 2023-09-20 19:19:09 -04:00
parent c733ae88f3
commit 7788925216
2 changed files with 4 additions and 4 deletions

View file

@ -50,20 +50,20 @@
modules = [ modules = [
./citrus.nix ./citrus.nix
"${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix" "${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
./platforms/orange.nix ./platforms/melodypond.nix
inputs.nixos-hardware.nixosModules.raspberry-pi-4 inputs.nixos-hardware.nixosModules.raspberry-pi-4
]; ];
in { in {
# Colmena deploy manifest # Colmena deploy manifest
colmena = { colmena = {
meta.nixpkgs = pkgs; meta.nixpkgs = pkgs;
orange = { melodypond = {
deployment.targetUser = "geekygay"; deployment.targetUser = "geekygay";
imports = modules; imports = modules;
}; };
}; };
# SD card image build. # SD card image build.
orange = (nixpkgs.lib.nixosSystem { melodypond = (nixpkgs.lib.nixosSystem {
inherit pkgs modules; inherit pkgs modules;
}).config.system.build.sdImage; }).config.system.build.sdImage;
}); });

View file

@ -17,5 +17,5 @@
raspberrypi-eeprom raspberrypi-eeprom
]; ];
networking.hostName = "orange"; networking.hostName = "melodypond";
} }