mirror of
https://code.dumpstack.io/tools/appvm.git
synced 2024-11-18 10:13:00 +00:00
11 lines
250 B
Nix
11 lines
250 B
Nix
{config, options, ...}:
|
|
{
|
|
config.networking.hostName = "chromium";
|
|
config.fileSystems."/home/user" = {
|
|
device = "apphome";
|
|
fsType = "9p";
|
|
options = [ "trans=virtio" "version=9p2000.L" "cache=loose" ];
|
|
neededForBoot = true;
|
|
};
|
|
}
|