blob: d8a1100fd01a8f0926a4efbc73d5dea36642ce87 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
 | { pkgs, ... }:
{
  nixpkgs.config.allowUnfree = true;
  home = {
    username = "vagrant";
    homeDirectory = "/home/vagrant";
  };
  home.packages = with pkgs; [
    wget
    tmux
    fzf
    fd
    ripgrep
    unzip
    zip
    ccls
    pyright
    git-lfs
  ];
  programs.bash.initExtra = ''
    . "$HOME/.nix-profile/etc/profile.d/nix.sh"
    alias ls="ls --color=auto"
  '';
  imports = (map (path: ../../config/${path}) [
    "bash.nix"
    "dotfiles.nix"
    "git"
    "nvim"
  ]);
  home.stateVersion = "23.11";
  programs.home-manager.enable = true;
}
 |