disko/tests/make-disk-image.nix

10 lines
183 B
Nix
Raw Normal View History

2023-07-28 12:04:42 +00:00
{ pkgs ? import <nixpkgs> { }
, diskoLib ? pkgs.callPackage ../lib { }
}:
diskoLib.makeDiskImage {
nixosConfig = pkgs.nixos [
../module.nix
../example/simple-efi.nix
];
}