From 68b7a2f80d314eb09d103b45768098786640f6f2 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Sun, 24 Aug 2025 18:39:31 -0400 Subject: [PATCH] added leviathan to flake.nix --- flake.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flake.nix b/flake.nix index 531100c..890e376 100644 --- a/flake.nix +++ b/flake.nix @@ -89,6 +89,12 @@ ]; specialArgs = { inherit inputs outputs; }; }; + leviathan = lib.nixosSystem { + modules = [ + ./systems/leviathan + ]; + specialArgs = { inherit inputs outputs; }; + }; }; }; }