disko/tests/make-disk-image-impure.nix
2023-08-07 15:57:14 +00:00

12 lines
208 B
Nix

{ pkgs ? import <nixpkgs> { }
, diskoLib ? pkgs.callPackage ../lib { }
}:
diskoLib.makeDiskImageScript {
nixosConfig = pkgs.nixos [
../module.nix
../example/simple-efi.nix
];
checked = true;
}