fancy new runner

This commit is contained in:
Squibid 2025-11-25 15:24:59 -05:00
parent d28ec06ae9
commit 8e5d215275
Signed by: squibid
GPG key ID: BECE5684D3C4005D
5 changed files with 117 additions and 61 deletions

View file

@ -63,7 +63,7 @@
profiles.system = {
user = "root";
sshUser = "crown";
path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.${name};
path = inputs.deploy-rs.lib."x86_64-linux".activate.nixos self.nixosConfigurations.${name};
};
} options
)) <| nodes;
@ -79,6 +79,11 @@
crayon = { hostname = "squi.bid"; };
};
# dev shell to deploy this flake
devShells."x86_64-linux".default = builtins.import ./shell.nix {
pkgs = nixpkgs.legacyPackages."x86_64-linux";
};
checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) inputs.deploy-rs.lib;
};
}