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