2015-08-07 12:53:02 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
# vda1 ext4 (label nixos) -> only root partition
|
2016-10-20 20:54:38 +02:00
|
|
|
with import <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";
|
|
|
|
|
|
|
|
}
|