2015-08-07 10:53:02 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
# vda1 ext4 (label nixos) -> only root partition
|
2016-10-20 18:54:38 +00:00
|
|
|
with import <stockholm/lib>;
|
2015-08-07 10:53:02 +00:00
|
|
|
{
|
2015-11-06 10:01:49 +00:00
|
|
|
imports = [
|
|
|
|
./single-partition-ext4.nix
|
|
|
|
];
|
2015-08-07 10:53:02 +00:00
|
|
|
boot.loader.grub.device = "/dev/vda";
|
|
|
|
|
|
|
|
}
|