nixos-config/2configs/fs/single-partition-ext4.nix
2024-05-31 10:38:37 +02:00

12 lines
240 B
Nix

{config, ...}:
{
# fdisk /dev/sda
# mkfs.ext4 -L nixos /dev/sda1
boot.loader.grub.enable = assert config.boot.loader.grub.device != ""; true;
fileSystems."/" = {
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
}