diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2024-05-20 15:59:10 +0000 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2024-05-20 15:59:10 +0000 | 
| commit | 18d5951265c67bcf99237f9543f89793bd024d55 (patch) | |
| tree | 27b91f2afa2f581cbf56c20a49ffdf0d3ba85546 /machines/v/home.nix | |
| parent | f16c299d9861a1b02cc0bfa16ac64936757e76b4 (diff) | |
home-manager configuration for vagrant box
Diffstat (limited to 'machines/v/home.nix')
| -rw-r--r-- | machines/v/home.nix | 36 | 
1 files changed, 36 insertions, 0 deletions
| diff --git a/machines/v/home.nix b/machines/v/home.nix new file mode 100644 index 0000000..5e4ed4d --- /dev/null +++ b/machines/v/home.nix @@ -0,0 +1,36 @@ +{ pkgs, ... }: + +{ +  nixpkgs.config.allowUnfree = true; + +  home = { +    username = "vagrant"; +    homeDirectory = "/home/vagrant"; +  }; + +  home.packages = with pkgs; [ +    wget + +    tmux +    fzf +    fd +    ripgrep + +    unzip +    zip + +    ccls +    nodePackages.pyright +    git-lfs +  ]; + +  imports = (map (path: ../../config/${path}) [ +    "bash.nix" +    "dotfiles.nix" +    "git" +    "nvim" +  ]); + +  home.stateVersion = "23.11"; +  programs.home-manager.enable = true; +} | 
