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
|
* [ ] vimPlugins.outline-nvim
|
||||||
|
|
||||||
## home-manager
|
## 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)
|
* [ ] Find a way to remove all default search engines in Firefox (Google, Amazon, etc)
|
||||||
|
|
||||||
Completed To Do List [here](./docs/complete.md)
|
Completed To Do List [here](./docs/complete.md)
|
||||||
|
|
|
@ -2,5 +2,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./kitty.nix
|
./kitty.nix
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
|
./thunderbird.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,14 +35,17 @@
|
||||||
accounts = {
|
accounts = {
|
||||||
email = {
|
email = {
|
||||||
accounts."Albert Copeland" = {
|
accounts."Albert Copeland" = {
|
||||||
thunderbird.enable = true;
|
thunderbird = {
|
||||||
|
enable = true;
|
||||||
|
profiles = [ "Default" ];
|
||||||
|
};
|
||||||
# neomutt.enable = true;
|
# neomutt.enable = true;
|
||||||
userName = "albert";
|
userName = "albert";
|
||||||
primary = true;
|
primary = true;
|
||||||
address = "albert@sysctl.io";
|
address = "albert@sysctl.io";
|
||||||
# password
|
# password
|
||||||
# https://nix-community.github.io/home-manager/options.html#opt-accounts.email.accounts._name_.passwordCommand
|
# 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";
|
realName = "Albert J. Copeland";
|
||||||
signature = ''
|
signature = ''
|
||||||
Albert J. Copeland
|
Albert J. Copeland
|
||||||
|
|
|
@ -50,7 +50,6 @@
|
||||||
orca
|
orca
|
||||||
pavucontrol
|
pavucontrol
|
||||||
qalculate-gtk
|
qalculate-gtk
|
||||||
thunderbird
|
|
||||||
wmctrl
|
wmctrl
|
||||||
xclip
|
xclip
|
||||||
xcolor
|
xcolor
|
||||||
|
|
Loading…
Reference in a new issue