flake: adds fragile host

This commit is contained in:
Ahwx 2026-04-29 00:06:32 +02:00
parent 1c3f2d5e02
commit 38b41c3155

View file

@ -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;
};
};
};
};
}