appvm/chromium-config.nix

11 lines
250 B
Nix
Raw Normal View History

2018-06-30 19:26:34 +00:00
{config, options, ...}:
2018-06-30 08:39:47 +00:00
{
config.networking.hostName = "chromium";
2018-06-30 19:26:34 +00:00
config.fileSystems."/home/user" = {
device = "apphome";
fsType = "9p";
options = [ "trans=virtio" "version=9p2000.L" "cache=loose" ];
neededForBoot = true;
};
2018-06-30 08:39:47 +00:00
}