From 1c7b7c4cae86dee24e90700abc661df6d47a5030 Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Sun, 10 Dec 2023 22:42:33 +0000 Subject: [PATCH] Add pi definition --- flake.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/flake.nix b/flake.nix index ccd024c..fc9b94c 100644 --- a/flake.nix +++ b/flake.nix @@ -81,6 +81,15 @@ ]; specialArgs = { inherit lib inputs; }; }; + pi = nixpkgs.lib.nixosSystem { + modules = [ + home-manager.nixosModules.home-manager + agenix.nixosModules.default + (import ./modules) + ./hosts/pi + ]; + specialArgs = { inherit lib inputs; }; + }; }; }; }