12 lines
199 B
Nix
12 lines
199 B
Nix
|
{
|
||
|
machines.talos = {
|
||
|
arch = "x86_64-linux";
|
||
|
|
||
|
nixosModule = { lib, ... }: {
|
||
|
lab.storage.profile = "normal";
|
||
|
|
||
|
# boot.loader.systemd-boot.enable = lib.mkForce false;
|
||
|
};
|
||
|
};
|
||
|
}
|