summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/fs/vm-single-partition.nix
blob: 26908c357b58905910b404c0691025b2d6c5e8a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ 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";

}