mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
17 lines
318 B
Nix
17 lines
318 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.bash.enable = true;
|
|
programs.direnv.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.bashrc
|
|
assertFileRegex \
|
|
home-files/.bashrc \
|
|
'eval "\$(/nix/store/.*direnv.*/bin/direnv hook bash)"'
|
|
'';
|
|
};
|
|
}
|