From 5450dca4bc312c73651f25690b58f8fa258218e0 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Mon, 11 May 2026 02:35:09 +0200 Subject: [PATCH] chore: also add `flora` to `flake.nix` --- flake.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/flake.nix b/flake.nix index e74440d..60d14c9 100644 --- a/flake.nix +++ b/flake.nix @@ -237,6 +237,17 @@ inherit self inputs username; }; }; + flora = nixpkgs.lib.nixosSystem { + inherit system; + modules = [ + (import ./hosts/flora) + ]; + specialArgs = { + host = "flora"; + system = "x86_64-linux"; + inherit self inputs username; + }; + }; }; }; }