mirror of
https://code.dumpstack.io/tools/appvm.git
synced 2024-11-23 16:41:29 +00:00
Add evince
This commit is contained in:
parent
a2fa6bc1c0
commit
e7e37b2f44
|
@ -74,3 +74,4 @@ For create new app you should add package name (search at https://nixos.org/nixo
|
||||||
* chromium
|
* chromium
|
||||||
* thunderbird
|
* thunderbird
|
||||||
* tdesktop
|
* tdesktop
|
||||||
|
* evince
|
||||||
|
|
10
nix/evince.nix
Normal file
10
nix/evince.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{pkgs, ...}:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
<nixpkgs/nixos/modules/virtualisation/qemu-vm.nix>
|
||||||
|
<nix/base.nix>
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.systemPackages = [ pkgs.evince ];
|
||||||
|
services.xserver.displayManager.sessionCommands = "while [ 1 ]; do ${pkgs.evince}/bin/evince; done &";
|
||||||
|
}
|
Loading…
Reference in a new issue