mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
silence eval warnings in make-disk-image tests
This commit is contained in:
parent
ceabbec315
commit
049d1bd952
2 changed files with 8 additions and 2 deletions
|
@ -5,7 +5,10 @@ diskoLib.makeDiskImageScript {
|
||||||
nixosConfig = pkgs.nixos [
|
nixosConfig = pkgs.nixos [
|
||||||
../module.nix
|
../module.nix
|
||||||
../example/simple-efi.nix
|
../example/simple-efi.nix
|
||||||
{ documentation.enable = false; }
|
({ config, ... }: {
|
||||||
|
documentation.enable = false;
|
||||||
|
system.stateVersion = config.system.nixos.version;
|
||||||
|
})
|
||||||
];
|
];
|
||||||
checked = true;
|
checked = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,9 @@ diskoLib.makeDiskImage {
|
||||||
nixosConfig = pkgs.nixos [
|
nixosConfig = pkgs.nixos [
|
||||||
../module.nix
|
../module.nix
|
||||||
../example/simple-efi.nix
|
../example/simple-efi.nix
|
||||||
{ documentation.enable = false; }
|
({ config, ... }: {
|
||||||
|
documentation.enable = false;
|
||||||
|
system.stateVersion = config.system.nixos.version;
|
||||||
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue