1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-03 15:41:02 +01:00
home-manager/tests/modules/programs/grep/basic-configuration.nix
Austin Horstman 994d854a4a tests/grep: add tests
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-10-05 16:22:37 -05:00

13 lines
288 B
Nix

{
config = {
programs.grep = {
enable = true;
};
nmt.script = ''
# Verify no GREP_COLORS environment variable is set when colors is empty
hmEnvFile=home-path/etc/profile.d/hm-session-vars.sh
assertFileNotRegex $hmEnvFile 'GCC_COLORS'
'';
};
}