aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/programs/direnv/bash.nix
blob: db0d6b391f59d1b02d794a49000ce3f2e999b6c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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)"'
    '';
  };
}