diff options
Diffstat (limited to '')
| -rw-r--r-- | machines/vm/home.nix (renamed from machines/d/home.nix) | 10 | 
1 files changed, 10 insertions, 0 deletions
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"  | 
