mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 21:29:12 +02:00
15 lines
395 B
Nix
15 lines
395 B
Nix
{ self, lib, config, inputs, microVMParent, nodes, ... }:
|
|
{
|
|
config = {
|
|
microvm = {
|
|
shares = [
|
|
{
|
|
tag = "persist";
|
|
source = "${lib.optionalString nodes.${microVMParent}.config.swarselsystems.isImpermanence "/persist"}/microvms/${config.networking.hostName}";
|
|
mountPoint = "/persist";
|
|
proto = "virtiofs";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|