mirror of
https://code.dumpstack.io/tools/appvm.git
synced 2024-10-31 17:33:01 +00:00
11 lines
279 B
Nix
11 lines
279 B
Nix
{pkgs, ...}:
|
|
{
|
|
imports = [
|
|
<nixpkgs/nixos/modules/virtualisation/qemu-vm.nix>
|
|
<nix/base.nix>
|
|
];
|
|
|
|
environment.systemPackages = [ pkgs.thunderbird ];
|
|
services.xserver.displayManager.sessionCommands = "while [ 1 ]; do ${pkgs.thunderbird}/bin/thunderbird; done &";
|
|
}
|