mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
29 lines
902 B
Nix
29 lines
902 B
Nix
# This is a test utility that automatically formats
|
|
# `config.virtualisation.rootDevice` in the initrd.
|
|
# Note that when you are using
|
|
# `boot.initrd.systemd.enable = true`, you can use
|
|
# `virtualisation.fileSystems."/".autoFormat = true;`
|
|
# instead.
|
|
|
|
{ lib, config, pkgs, ... }:
|
|
|
|
let
|
|
rootDevice = config.virtualisation.rootDevice;
|
|
in
|
|
{
|
|
|
|
boot.initrd.extraUtilsCommands = lib.mkIf (!config.boot.initrd.systemd.enable) ''
|
|
# We need mke2fs in the initrd.
|
|
copy_bin_and_libs ${pkgs.e2fsprogs}/bin/mke2fs
|
|
'';
|
|
|
|
boot.initrd.postDeviceCommands = lib.mkIf (!config.boot.initrd.systemd.enable) ''
|
|
# If the disk image appears to be empty, run mke2fs to
|
|
# initialise.
|
|
FSTYPE=$(blkid -o value -s TYPE ${rootDevice} || true)
|
|
PARTTYPE=$(blkid -o value -s PTTYPE ${rootDevice} || true)
|
|
if test -z "$FSTYPE" -a -z "$PARTTYPE"; then
|
|
mke2fs -t ext4 ${rootDevice}
|
|
fi
|
|
'';
|
|
}
|