HM updates
This commit is contained in:
parent
12e9615984
commit
20bbcacdb3
4 changed files with 6 additions and 4 deletions
|
@ -55,7 +55,6 @@ nix develop -c /etc/nixos/git/docs/setup.sh
|
|||
* [ ] vimPlugins.outline-nvim
|
||||
|
||||
## home-manager
|
||||
* [ ] Figure out what the home-manager `account` options are for.
|
||||
* [ ] Find a way to remove all default search engines in Firefox (Google, Amazon, etc)
|
||||
|
||||
Completed To Do List [here](./docs/complete.md)
|
||||
|
|
|
@ -2,5 +2,6 @@
|
|||
imports = [
|
||||
./kitty.nix
|
||||
./firefox.nix
|
||||
./thunderbird.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -35,14 +35,17 @@
|
|||
accounts = {
|
||||
email = {
|
||||
accounts."Albert Copeland" = {
|
||||
thunderbird.enable = true;
|
||||
thunderbird = {
|
||||
enable = true;
|
||||
profiles = [ "Default" ];
|
||||
};
|
||||
# neomutt.enable = true;
|
||||
userName = "albert";
|
||||
primary = true;
|
||||
address = "albert@sysctl.io";
|
||||
# password
|
||||
# https://nix-community.github.io/home-manager/options.html#opt-accounts.email.accounts._name_.passwordCommand
|
||||
# password_command = "cat /var/run/sysctl-email"
|
||||
password_command = "cat /run/secrets/albert/email_password";
|
||||
realName = "Albert J. Copeland";
|
||||
signature = ''
|
||||
Albert J. Copeland
|
||||
|
|
|
@ -50,7 +50,6 @@
|
|||
orca
|
||||
pavucontrol
|
||||
qalculate-gtk
|
||||
thunderbird
|
||||
wmctrl
|
||||
xclip
|
||||
xcolor
|
||||
|
|
Loading…
Reference in a new issue