Guest User

Untitled

a guest
Aug 24th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 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.bash.enable = true;
  16. # programs.zsh.enable = true;
  17. # programs.fish.enable = true;
  18.  
  19. # Used for backwards compatibility, please read the changelog before changing.
  20. # $ darwin-rebuild changelog
  21. system.stateVersion = 3;
  22.  
  23. # You should generally set this to the total number of logical cores in your system.
  24. # $ sysctl -n hw.ncpu
  25. nix.maxJobs = 1;
  26. nix.buildCores = 1;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment