21 lines
465 B
Nix
21 lines
465 B
Nix
# SPDX-FileCopyrightText: 2024 Ryan Lahfa <ryan.lahfa@dgnum.eu>
|
|
#
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
_: {
|
|
microvm.autostart = [ "router01" ];
|
|
microvm.vms.router01 = {
|
|
config = {
|
|
networking.hostName = "router01";
|
|
system.stateVersion = "24.11";
|
|
microvm.shares = [
|
|
{
|
|
source = "/nix/store";
|
|
mountPoint = "/nix/.ro-store";
|
|
tag = "ro-store";
|
|
proto = "virtiofs";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|