···66 # Home Manager needs a bit of information about you and the paths it should
77 # manage.
8899+ home.homeDirectory = "/Users/mofin";
1010+911 # This value determines the Home Manager release that your configuration is
1012 # compatible with. This helps avoid breakage when a new Home Manager release
1113 # introduces backwards incompatible changes.
···1921 # environment.
2022 home.packages = with pkgs; [
2123 hello
2424+ neovim
2525+ git
2226 # # It is sometimes useful to fine-tune packages, for example, by applying
2327 # # overrides. You can do that directly here, just don't forget the
2428 # # parentheses. Maybe you want to install Nerd Fonts with a limited number of
···4044 # # the Nix store. Activating the configuration will then make '~/.screenrc' a
4145 # # symlink to the Nix store copy.
4246 # ".screenrc".source = dotfiles/screenrc;
4747+4848+ ".gitconfig".source = ../dotfiles/.gitconfig;
43494450 # # You can also set the file content immediately.
4551 # ".gradle/gradle.properties".text = ''
···64706571 # Let Home Manager install and manage itself.
6672 programs.home-manager.enable = true;
6767-6868- programs.zsh = {
6969- enable = true;
7070- enableAutosuggestions = true;
7171- enableCompletion = true;
7272- };
7373}