Guest User

Untitled

a guest
Nov 29th, 2020
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. { config, pkgs, ... }:
  2.  
  3. {
  4. nixpkgs.config.allowUnfree = true;
  5.  
  6. # Let Home Manager install and manage itself.
  7. programs.home-manager.enable = true;
  8.  
  9. # Home Manager needs a bit of information about you and the
  10. # paths it should manage.
  11. home.username = "nixie";
  12. home.homeDirectory = "/home/nixie";
  13.  
  14. home.packages = [
  15. pkgs.fortune
  16. pkgs.htop
  17. pkgs.jetbrains.idea-ultimate
  18. pkgs.unzip
  19. pkgs.vlc
  20. pkgs.vscode
  21. pkgs.zeal
  22. ];
  23.  
  24. programs.git = {
  25. enable = true;
  26. userName = "Guisanpea";
  27. userEmail = "[email protected]";
  28. };
  29.  
  30. # This value determines the Home Manager release that your
  31. # configuration is compatible with. This helps avoid breakage
  32. # when a new Home Manager release introduces backwards
  33. # incompatible changes.
  34. #
  35. # You can update Home Manager without changing this value. See
  36. # the Home Manager release notes for a list of state version
  37. # changes in each release.
  38. home.stateVersion = "21.03";
  39.  
  40. xdg.configFile = {
  41. "i3/config".source = ./i3/config;
  42. };
  43. }
  44.  
Advertisement
Add Comment
Please, Sign In to add comment