add builder

This commit is contained in:
jopejoe1 2024-02-02 18:27:35 +01:00
parent 87d9df9603
commit c83dfcabf6
2 changed files with 15 additions and 0 deletions

View file

@ -28,6 +28,20 @@ in {
use-xdg-base-directories = true;
keep-going = true;
};
buildMachines = [
{
systems = [ self.nixosConfigurations.kuraokami.config.nixpkgs.hostPlatform.system ] ++ self.nixosConfigurations.kuraokami.config.nix.settings.extra-platform;
supportedFeatures = self.nixosConfigurations.kuraokami.config.nix.settings.system-features;
hostName = "kuraokami";
protocol = "ssh-ng";
}
{
systems = [ self.nixosConfigurations.zap.config.nixpkgs.hostPlatform.system ] ++ self.nixosConfigurations.zap.config.nix.settings.extra-platform;
supportedFeatures = self.nixosConfigurations.zap.config.nix.settings.system-features;
hostName = "zap";
protocol = "ssh-ng";
}
];
package = pkgs.nix;
registry = lib.mkForce ((lib.mapAttrs (_: flake: { inherit flake; })) ((lib.filterAttrs (_: lib.isType "flake")) self.inputs) // {
self.flake = self;

View file

@ -17,6 +17,7 @@ in {
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB8oyMpS2hK3gQXyHIIVS6oilgMpemLmfhKKJ6RBMwUh johannes@joens.email"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIP3pKtvhOOjG1pGJq7cVHS5uWy5IP8y1Ra/ENpmJcqOe root@zap"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFEcNAVRN66mfKmaCpxs++0094Eh4mqXkUwDPZPkIIBB johannes@joens.email"
];
packages = with pkgs;
[ libsForQt5.kate libsForQt5.ark ]