Fix second hypervisor
This commit is contained in:
parent
32d95a73e1
commit
9a13d82a15
2 changed files with 7 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{ #imports = [ ./hardware-configuration.nix ];
|
||||
{ imports = [ ./hardware-configuration.nix ];
|
||||
|
||||
nix = {
|
||||
settings = {
|
||||
|
|
|
@ -38,7 +38,13 @@
|
|||
device = "/dev/disk/by-label/ESP";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
"/var/lib/microvms" = {
|
||||
device = "/dev/vdb1";
|
||||
fsType = "ext4";
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
services.fstrim = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue