NixOS configs
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.8 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. { config, pkgs, ... }:
  2. {
  3. services.xserver.displayManager.gdm.enable = true;
  4. services.xserver.desktopManager.gnome.enable = true;
  5. programs.dconf.enable = true;
  6. home-manager.users.junikim = {
  7. # Home Manager needs a bit of information about you and the
  8. # paths it should manage.
  9. home.username = "junikim";
  10. home.homeDirectory = "/home/junikim";
  11. # This value determines the Home Manager release that your
  12. # configuration is compatible with. This helps avoid breakage
  13. # when a new Home Manager release introduces backwards
  14. # incompatible changes.
  15. #
  16. # You can update Home Manager without changing this value. See
  17. # the Home Manager release notes for a list of state version
  18. # changes in each release.
  19. home.stateVersion = "22.05";
  20. # Let Home Manager install and manage itself.
  21. programs.home-manager.enable = true;
  22. programs.starship.enable = true;
  23. home.packages = with pkgs; [
  24. vim xclip neofetch tmux
  25. fff
  26. nodejs shellcheck
  27. dash
  28. wget brave
  29. kitty nitrogen
  30. nfs-utils gcc gnumake pulsemixer
  31. ];
  32. programs.neovim = {
  33. enable = true;
  34. plugins = with pkgs.vimPlugins; [
  35. coc-nvim
  36. neovim-sensible
  37. vim-airline
  38. vim-airline-themes
  39. vim-nix
  40. ];
  41. extraConfig = builtins.readFile ../dotfiles/init.vim;
  42. };
  43. programs.git = {
  44. enable = true;
  45. userName = "Juni Kim";
  46. userEmail = "junikimm717@gmail.com";
  47. };
  48. programs.zsh = {
  49. oh-my-zsh = {
  50. enable = true;
  51. theme = "robbyrussell";
  52. };
  53. };
  54. home.file = {
  55. ".config/kitty/kitty.conf".source = ../dotfiles/kitty.conf;
  56. ".config/nixpkgs/config.nix".source = ../dotfiles/config.nix;
  57. ".tmux.conf".source = ../dotfiles/tmux.conf;
  58. ".zshrc".source = ../dotfiles/zshrc;
  59. };
  60. };
  61. }