Replace rec with let
This commit is contained in:
parent
c0a0046260
commit
89459effd8
1 changed files with 6 additions and 6 deletions
|
@ -1,9 +1,9 @@
|
|||
{ lib, config, ... }:
|
||||
{
|
||||
accounts.email.accounts = lib.mkIf config.meta.home-manager.email.enable {
|
||||
PurelyMail = rec {
|
||||
PurelyMail = let address = "ty@myriation.xyz"; in {
|
||||
realName = "Tyler Beckman";
|
||||
address = "ty@myriation.xyz";
|
||||
inherit address;
|
||||
userName = address;
|
||||
primary = true;
|
||||
|
||||
|
@ -41,9 +41,9 @@
|
|||
thunderbird.enable = config.meta.home-manager.email.thunderbird.enable;
|
||||
};
|
||||
|
||||
Gmail = rec {
|
||||
Gmail = let address = "tbeckman530@gmail.com"; in {
|
||||
realName = "Tyler Beckman";
|
||||
address = "tbeckman530@gmail.com";
|
||||
inherit address;
|
||||
userName = address;
|
||||
flavor = "gmail.com";
|
||||
|
||||
|
@ -65,9 +65,9 @@
|
|||
thunderbird.enable = config.meta.home-manager.email.thunderbird.enable;
|
||||
};
|
||||
|
||||
School = rec {
|
||||
School = let address = "tyler_beckman@mines.edu"; in {
|
||||
realName = "Tyler Beckman";
|
||||
address = "tyler_beckman@mines.edu";
|
||||
inherit address;
|
||||
userName = address;
|
||||
flavor = "outlook.office365.com";
|
||||
|
||||
|
|
Loading…
Reference in a new issue