mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
4256729006
As a replacement, this adds the `run` helper function.
24 lines
545 B
Nix
24 lines
545 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [ ../../accounts/email-test-accounts.nix ];
|
|
|
|
accounts.email.accounts = {
|
|
"hm@example.com" = {
|
|
mu.enable = true;
|
|
aliases = [ "foo@example.com" ];
|
|
};
|
|
};
|
|
|
|
programs.mu.enable = true;
|
|
|
|
test.stubs.mu = { name = "mu"; };
|
|
|
|
nmt.script = ''
|
|
assertFileContains activate \
|
|
'if [[ ! -d "/home/hm-user/.cache/mu" ]]; then'
|
|
|
|
assertFileContains activate \
|
|
'run @mu@/bin/mu init --maildir=/home/hm-user/Mail --my-address=hm@example.com --my-address=foo@example.com $VERBOSE_ARG;'
|
|
'';
|
|
}
|