Guest User

Untitled

a guest
May 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. { config, pkgs, ... }:
  2.  
  3. {
  4. imports = [ <nixpkgs/nixos/modules/virtualisation/amazon-image.nix> ];
  5. ec2.hvm = true;
  6.  
  7. # Install some packages
  8. environment.systemPackages =
  9. with pkgs;
  10. [
  11. tmux byobu vim emacs gnumake gcc w3m gitAndTools.gitFull
  12. ];
  13.  
  14.  
  15. }
Add Comment
Please, Sign In to add comment