From 18a5d069036b509f0989c8fd819e572e4effa683 Mon Sep 17 00:00:00 2001 From: Bill Ewanick Date: Sun, 14 Jan 2024 02:46:14 -0500 Subject: [PATCH] Add hydra job --- flake.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index fcbf8be..263adc3 100644 --- a/flake.nix +++ b/flake.nix @@ -5,7 +5,7 @@ nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05"; }; - outputs = inputs@{ nixpkgs, ... }: + outputs = inputs@{ self, nixpkgs, ... }: { nixosConfigurations.linode-nixos = nixpkgs.lib.nixosSystem { @@ -16,5 +16,10 @@ ./nixos-apps ]; }; + + hydraJobs = { + inherit (self) + nixosConfigurations; + }; }; }