Skip to content
Snippets Groups Projects
Verified Commit 762328da authored by Legy (Beini)'s avatar Legy (Beini)
Browse files

Update for letest wat

parent bd9d4ed9
No related branches found
No related tags found
No related merge requests found
...@@ -11,8 +11,12 @@ ...@@ -11,8 +11,12 @@
}; };
outputs = flakes@{ self, wat, ... }: wat.lib.mkWatRepo ({ findMachines, ... }: { outputs = flakes: flakes.wat.lib.mkWatRepo flakes ({ findMachines, ... }: {
nixosConfigurations = findMachines ./machines; outputs = {
nixosConfigurations = findMachines ./machines;
};
}); });
} }
{ mkMachine, ... }: { mkMachine, flakes, ... }:
mkMachine "x86_64-linux" ({ ... }: { mkMachine flakes.nixpkgs "x86_64-linux" ({ ... }: {
# your system here # your system here
fileSystems."/" = {
device = "/dev/TODO";
};
boot.loader.grub.device = "/dev/TODO";
}) })
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment