2015-08-07 12:53:02 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
# vda1 ext4 (label nixos) -> only root partition
|
2023-07-02 16:05:52 +02:00
|
|
|
with pkgs.stockholm.lib;
|
2015-08-07 12:53:02 +02:00
|
|
|
{
|
2015-11-06 11:01:49 +01:00
|
|
|
imports = [
|
|
|
|
./single-partition-ext4.nix
|
|
|
|
];
|
2015-08-07 12:53:02 +02:00
|
|
|
boot.loader.grub.device = "/dev/vda";
|
|
|
|
|
|
|
|
}
|