From 38b41c31552952a83247bfc074551498401396ed Mon Sep 17 00:00:00 2001 From: Ahwx Date: Wed, 29 Apr 2026 00:06:32 +0200 Subject: [PATCH] flake: adds `fragile` host --- flake.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/flake.nix b/flake.nix index e3d1371..a277732 100644 --- a/flake.nix +++ b/flake.nix @@ -225,6 +225,17 @@ inherit self inputs username; }; }; + fragile = nixpkgs.lib.nixosSystem { + inherit system; + modules = [ + (import ./hosts/fragile) + ]; + specialArgs = { + host = "fragile"; + system = "aarch64-linux"; + inherit self inputs username; + }; + }; }; }; }