mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-04-18 19:24:09 +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;
|
||||
|
|
|
@ -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 ]
|
||||
|
|
Loading…
Add table
Reference in a new issue