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