blob: 27e28cb681e79ba2fa6e1d48528b65e9fb26e1fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ config, lib, pkgs, ... }:
# vda1 ext4 (label nixos) -> only root partition
with lib;
{
imports = [
./single-partition-ext4.nix
];
boot.loader.grub.device = "/dev/vda";
}
|