add mail
This commit is contained in:
@@ -2,5 +2,6 @@
|
||||
{
|
||||
imports = [
|
||||
./fastfetch.nix
|
||||
./mail.nix
|
||||
];
|
||||
}
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user