disko/tests/make-disk-image-impure.nix

12 lines
208 B
Nix
Raw Normal View History

2023-07-31 09:16:45 +00:00
{ pkgs ? import <nixpkgs> { }
, diskoLib ? pkgs.callPackage ../lib { }
}:
diskoLib.makeDiskImageScript {
nixosConfig = pkgs.nixos [
../module.nix
../example/simple-efi.nix
];
checked = true;
}