From e0b495d33cd7e39255048dddf0794686ae9ff1c5 Mon Sep 17 00:00:00 2001 From: David Crompton Date: Thu, 13 Mar 2025 14:39:09 -0400 Subject: [PATCH] Hydra test job --- flake.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 7643872..1ce5204 100644 --- a/flake.nix +++ b/flake.nix @@ -45,11 +45,12 @@ modules =[ ./machines/hippocampus/configuration.nix (overlays' [ - overlays.hydra overlays.nvidiaContainer ]) modules.sops - lix-module.nixosModules.default + ({ pkgs, ...}: { + nix.package = pkgs.lix; + }) ]; }; universedesktop = nixosSystem' { @@ -89,5 +90,9 @@ ]; }; }; + + hydraJobs = { + pkgs.hello + }; }; }