summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/fs/single-partition-ext4.nix
blob: 1970c949f76395391510c5fd57ffbe6c29798a39 (plain)
1
2
3
4
5
6
7
8
9
10
{config, ...}:
{
  boot.loader.grub.enable = assert config.boot.loader.grub.device != ""; true;
  boot.loader.grub.version = 2;

  fileSystems."/" = {
    device = "/dev/disk/by-label/nixos";
    fsType = "ext4";
  };
}