Fix second hypervisor

This commit is contained in:
tbarnouin 2024-09-17 18:32:10 +02:00
parent 32d95a73e1
commit 9a13d82a15
2 changed files with 7 additions and 1 deletions

View file

@ -1,6 +1,6 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ #imports = [ ./hardware-configuration.nix ]; { imports = [ ./hardware-configuration.nix ];
nix = { nix = {
settings = { settings = {

View file

@ -38,8 +38,14 @@
device = "/dev/disk/by-label/ESP"; device = "/dev/disk/by-label/ESP";
fsType = "vfat"; fsType = "vfat";
}; };
"/var/lib/microvms" = {
device = "/dev/vdb1";
fsType = "ext4";
};
}; };
services.fstrim = { services.fstrim = {
enable = true; enable = true;
interval = "weekly"; interval = "weekly";