Advertisement
Guest User

Untitled

a guest
Jan 13th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. # List packages installed in system profile. To search, run:
  2. # $ nix search wget
  3. environment.systemPackages = with pkgs;
  4. let
  5. my-packages = python-packages: with python-packages; [
  6. requests
  7. virtualenvwrapper
  8. ];
  9. python-with-my-packages = python37.withPackages my-packages;
  10. in
  11. [
  12. # X11.
  13. xorg.xinit
  14. xorg.xbacklight # used to control the screen backlight
  15.  
  16. # Terminal emulators.
  17. alacritty
  18.  
  19. # Python
  20. python37 python-with-my-packages python37Packages.virtualenv python37Packages.pip
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement