mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-07 21:39:23 +02:00
add builder
This commit is contained in:
parent
87d9df9603
commit
c83dfcabf6
2 changed files with 15 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue