diff --git a/README.md b/README.md index 6b103da..d0db0dc 100644 --- a/README.md +++ b/README.md @@ -74,3 +74,4 @@ For create new app you should add package name (search at https://nixos.org/nixo * chromium * thunderbird * tdesktop +* evince diff --git a/nix/evince.nix b/nix/evince.nix new file mode 100644 index 0000000..1d90d62 --- /dev/null +++ b/nix/evince.nix @@ -0,0 +1,10 @@ +{pkgs, ...}: +{ + imports = [ + + + ]; + + environment.systemPackages = [ pkgs.evince ]; + services.xserver.displayManager.sessionCommands = "while [ 1 ]; do ${pkgs.evince}/bin/evince; done &"; +}