diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2024-05-25 16:22:13 +0530 |
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2024-05-25 16:22:13 +0530 |
| commit | f23f386299e9d62765f2474d8976eeb0193104ce (patch) | |
| tree | ff3a6549849f81423844f8ed26b8f28a84568f6b /machines/d | |
| parent | 13d652e4a395e0b205d933100aa47efee9343952 (diff) | |
update
Diffstat (limited to 'machines/d')
| -rw-r--r-- | machines/d/home.nix | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/machines/d/home.nix b/machines/d/home.nix new file mode 100644 index 0000000..623d484 --- /dev/null +++ b/machines/d/home.nix @@ -0,0 +1,40 @@ +{ pkgs, ... }: + +{ + nixpkgs.config.allowUnfree = true; + + home = { + username = "docker"; + homeDirectory = "/home/docker"; + }; + + home.packages = with pkgs; [ + wget + + tmux + fzf + fd + ripgrep + + unzip + zip + + ccls + nodePackages.pyright + git-lfs + ]; + + programs.bash.initExtra = '' + . "$HOME/.nix-profile/etc/profile.d/nix.sh" + ''; + + imports = (map (path: ../../config/${path}) [ + "bash.nix" + "dotfiles.nix" + "git" + "nvim" + ]); + + home.stateVersion = "23.11"; + programs.home-manager.enable = true; +} |
