Skip to content

Commit

Permalink
hosts/centrium: Enable bitbake services
Browse files Browse the repository at this point in the history
Signed-off-by: Rodrigo M. Duarte <rodrigo.duarte@ossystems.com.br>
  • Loading branch information
mdrodrigo committed Feb 26, 2025
1 parent 4de91b5 commit 042324e
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion hosts/centrium/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ inputs, ... }:
{ inputs, pkgs, ... }:

{
imports = with inputs.nixos-hardware.nixosModules; [
Expand All @@ -19,4 +19,20 @@

kernelModules = [ "kvm-intel" ];
};

services.bitbake = {
enable = true;
versions = {
"scarthgap" = {
package = pkgs.bitbakePackages.bitbake_2_8_7;
hashServPort = 8686;
prServPort = 8685;
};
"styhead" = {
package = pkgs.bitbakePackages.bitbake_2_10_2;
hashServPort = 8786;
prServPort = 8785;
};
};
};
}

0 comments on commit 042324e

Please sign in to comment.