Changes hostname to prevent conflict.
This commit is contained in:
parent
c733ae88f3
commit
7788925216
|
@ -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;
|
||||
});
|
||||
|
|
|
@ -17,5 +17,5 @@
|
|||
raspberrypi-eeprom
|
||||
];
|
||||
|
||||
networking.hostName = "orange";
|
||||
networking.hostName = "melodypond";
|
||||
}
|
Loading…
Reference in a new issue