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

View file

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