mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
b33802ca7f
PR #1297
18 lines
394 B
Nix
18 lines
394 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.bash.enable = true;
|
|
programs.direnv.enable = true;
|
|
programs.direnv.enableNixDirenvIntegration = true;
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.bashrc
|
|
assertFileRegex \
|
|
home-files/.config/direnv/direnvrc \
|
|
'source /nix/store/.*nix-direnv.*/share/nix-direnv/direnvrc'
|
|
'';
|
|
};
|
|
}
|