Guest User

Untitled

a guest
Aug 24th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. { config, pkgs, ... }:
  2.  
  3. {
  4. # List packages installed in system profile. To search by name, run:
  5. # $ nix-env -qaP | grep wget
  6. environment.systemPackages =
  7. [ pkgs.vim
  8. ];
  9.  
  10. # Auto upgrade nix package and the daemon service.
  11. # services.nix-daemon.enable = true;
  12. # nix.package = pkgs.nix;
  13.  
  14. # Create /etc/bashrc that loads the nix-darwin environment.
  15. programs.zsh.enable = true;
  16. nix.nixPath = [ "darwin-config=***" ];
  17.  
  18. # Used for backwards compatibility, please read the changelog before changing.
  19. # $ darwin-rebuild changelog
  20. system.stateVersion = 3;
  21.  
  22. # You should generally set this to the total number of logical cores in your system.
  23. # $ sysctl -n hw.ncpu
  24. nix.maxJobs = 1;
  25. nix.buildCores = 1;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment