modularize accounts
This commit is contained in:
parent
541f80ff91
commit
9418588fed
22
home/modules/accounts.nix
Normal file
22
home/modules/accounts.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
cfg = config.local.services.accounts;
|
||||||
|
in {
|
||||||
|
options.local.services.accounts.enable = mkEnableOption "accounts settings";
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
accounts.email.accounts = {
|
||||||
|
"fabian@posixlycorrect.com" = {
|
||||||
|
address = "fabian@posixlycorrect.com";
|
||||||
|
userName = "fabianmontero@fastmail.com";
|
||||||
|
realName = "fabian";
|
||||||
|
primary = true;
|
||||||
|
flavor = "fastmail.com";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -7,7 +7,7 @@
|
||||||
with lib; let
|
with lib; let
|
||||||
cfg = config.local.apps.terminal;
|
cfg = config.local.apps.terminal;
|
||||||
in {
|
in {
|
||||||
options.local.apps.terminal.enable = mkEnableOption "Terminal emulator settings";
|
options.local.apps.terminal.enable = mkEnableOption "terminal emulator settings";
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
programs = {
|
programs = {
|
||||||
kitty = {
|
kitty = {
|
||||||
|
@ -33,15 +33,5 @@ in {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
accounts.email.accounts = {
|
|
||||||
"fabian@posixlycorrect.com" = {
|
|
||||||
address = "fabian@posixlycorrect.com";
|
|
||||||
userName = "fabianmontero@fastmail.com";
|
|
||||||
realName = "fabian";
|
|
||||||
primary = true;
|
|
||||||
flavor = "fastmail.com";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,6 +45,7 @@
|
||||||
|
|
||||||
local.services = {
|
local.services = {
|
||||||
zsh.enable = true;
|
zsh.enable = true;
|
||||||
|
accounts.enable = true;
|
||||||
gpg = {
|
gpg = {
|
||||||
enalbe = true;
|
enalbe = true;
|
||||||
defaultKey = "7AA277E604A4173916BBB4E91FFAC35E1798174F";
|
defaultKey = "7AA277E604A4173916BBB4E91FFAC35E1798174F";
|
||||||
|
|
Loading…
Reference in a new issue