30 lines
556 B
Nix
30 lines
556 B
Nix
{
|
|
lib,
|
|
smayzy,
|
|
...
|
|
}:
|
|
let
|
|
mkIf = lib.mkIf;
|
|
in
|
|
{
|
|
config = mkIf smayzy.mail.enable {
|
|
home.file = {
|
|
".config/neomutt" = {
|
|
source = builtins.toPath ../../../dotfiles/neomutt;
|
|
recursive = true;
|
|
force = true;
|
|
};
|
|
".config/isyncrc" = {
|
|
source = builtins.toPath ../../../dotfiles/isyncrc;
|
|
recursive = true;
|
|
force = true;
|
|
};
|
|
".config/msmtp" = {
|
|
source = builtins.toPath ../../../dotfiles/msmtp;
|
|
recursive = true;
|
|
force = true;
|
|
};
|
|
};
|
|
};
|
|
}
|