This commit is contained in:
2026-04-22 20:34:53 +02:00
parent a2d976591b
commit c226044528
7 changed files with 309 additions and 52 deletions
+20
View File
@@ -0,0 +1,20 @@
{
inputs,
mkHost,
nixosModules,
...
}:
let
host = mkHost {
nixpkgs = inputs.nixpkgs-stable;
disko = inputs.disko-stable;
lolcat = inputs."lolcat++-stable";
system = "aarch64-linux";
inherit nixosModules;
hostModules = [ ./configuration.nix ];
};
in
{
Daidalos = host;
daidalos = host;
}