12 lines
203 B
Nix
12 lines
203 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
# vda1 ext4 (label nixos) -> only root partition
|
|
with import <stockholm/lib>;
|
|
{
|
|
imports = [
|
|
./single-partition-ext4.nix
|
|
];
|
|
boot.loader.grub.device = "/dev/vda";
|
|
|
|
}
|