diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2024-11-04 10:06:11 +0530 |
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2024-11-04 10:06:11 +0530 |
| commit | 53a39bc6f60b8d19964a64583fbf10088b7c8d20 (patch) | |
| tree | 48fbaf3ed1cf3450a570d373a95fb23db88636d2 /machines/v | |
| parent | b13a66ee6f5c5bad7425a2cdbb64ddb4267bcf9a (diff) | |
(update): dwl, vm config
Diffstat (limited to '')
| -rw-r--r-- | machines/v/home.nix | 40 | ||||
| -rw-r--r-- | machines/vm/home.nix (renamed from machines/d/home.nix) | 10 |
2 files changed, 10 insertions, 40 deletions
diff --git a/machines/v/home.nix b/machines/v/home.nix deleted file mode 100644 index 201d8db..0000000 --- a/machines/v/home.nix +++ /dev/null @@ -1,40 +0,0 @@ -{ pkgs, ... }: - -{ - nixpkgs.config.allowUnfree = true; - - home = { - username = "vagrant"; - homeDirectory = "/home/vagrant"; - }; - - home.packages = with pkgs; [ - wget - - tmux - fzf - fd - ripgrep - - unzip - zip - - 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; -} diff --git a/machines/d/home.nix b/machines/vm/home.nix index 41b1380..7aca730 100644 --- a/machines/d/home.nix +++ b/machines/vm/home.nix @@ -22,6 +22,16 @@ git-lfs ]; + programs = { + direnv = { + enable = true; + enableBashIntegration = true; + nix-direnv.enable = true; + }; + + bash.enable = true; + }; + programs.bash.initExtra = '' . "$HOME/.nix-profile/etc/profile.d/nix.sh" alias ls="ls --color=auto" |
