mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 17:54:08 -05:00
13 lines
224 B
Nix
13 lines
224 B
Nix
{
|
|
lib,
|
|
inputs,
|
|
modulesPath,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.disko.nixosModules.disko
|
|
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
|
|
];
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
}
|