mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
18 lines
318 B
Nix
18 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)"'
|
||
|
'';
|
||
|
};
|
||
|
}
|