mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
20 lines
393 B
Nix
20 lines
393 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let expectedContent = "something important";
|
||
|
in {
|
||
|
config = {
|
||
|
programs.bash.enable = true;
|
||
|
programs.direnv.enable = true;
|
||
|
programs.direnv.stdlib = expectedContent;
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.bashrc
|
||
|
assertFileRegex \
|
||
|
home-files/.config/direnv/direnvrc \
|
||
|
'${expectedContent}'
|
||
|
'';
|
||
|
};
|
||
|
}
|