added email clients.
This commit is contained in:
parent
a3d350ea15
commit
e54ef2c4ce
|
@ -85,6 +85,7 @@ inputs.nixpkgs.lib.nixosSystem {
|
||||||
../../modules/home-manager/terminal
|
../../modules/home-manager/terminal
|
||||||
../../modules/home-manager/nvim
|
../../modules/home-manager/nvim
|
||||||
../../modules/home-manager
|
../../modules/home-manager
|
||||||
|
../modules/home-manager/email.nix
|
||||||
inputs.nixvim.homeManagerModules.nixvim
|
inputs.nixvim.homeManagerModules.nixvim
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -30,5 +30,6 @@
|
||||||
../modules/home-manager/syncthing.nix
|
../modules/home-manager/syncthing.nix
|
||||||
../modules/home-manager/beets.nix
|
../modules/home-manager/beets.nix
|
||||||
../modules/home-manager/mpd/mpd.nix
|
../modules/home-manager/mpd/mpd.nix
|
||||||
|
../modules/home-manager/email.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,5 +31,6 @@
|
||||||
../modules/home-manager/nvim
|
../modules/home-manager/nvim
|
||||||
../modules/home-manager
|
../modules/home-manager
|
||||||
../modules/home-manager/syncthing.nix
|
../modules/home-manager/syncthing.nix
|
||||||
|
../modules/home-manager/email.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
23
modules/home-manager/email.nix
Normal file
23
modules/home-manager/email.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
programs.himalaya.enable = true;
|
||||||
|
|
||||||
|
programs.aerc = {
|
||||||
|
enable = true;
|
||||||
|
extraConfig.general.unsafe-accounts-conf = true;
|
||||||
|
};
|
||||||
|
accounts.email.accounts.gmail = {
|
||||||
|
address = "gabevenberg@gmail.com";
|
||||||
|
primary = true;
|
||||||
|
flavor = "gmail.com";
|
||||||
|
passwordCommand = "cat ~/keys/plaintext/gmail";
|
||||||
|
realName = "Gabe Venberg";
|
||||||
|
|
||||||
|
himalaya.enable = true;
|
||||||
|
aerc.enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue