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.81 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. nix.nixPath='~/.dotfiles/nix/configuration.nix'
  19.  
  20. # Used for backwards compatibility, please read the changelog before changing.
  21. # $ darwin-rebuild changelog
  22. system.stateVersion = 3;
  23.  
  24. # You should generally set this to the total number of logical cores in your system.
  25. # $ sysctl -n hw.ncpu
  26. nix.maxJobs = 1;
  27. nix.buildCores = 1;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment