re enable thunderbird in home manager
This commit is contained in:
parent
8282155619
commit
80c3873cf3
3 changed files with 8 additions and 23 deletions
|
@ -10,11 +10,14 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
# home.packages = with pkgs; [ thunderbird ];
|
programs.thunderbird = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.thunderbird-latest;
|
||||||
|
|
||||||
# programs.thunderbird = {
|
profiles.${config.snowfallorg.user.name} = {
|
||||||
# enable = true;
|
isDefault = true;
|
||||||
# };
|
};
|
||||||
|
};
|
||||||
|
|
||||||
accounts.email.accounts = {
|
accounts.email.accounts = {
|
||||||
kruining = {
|
kruining = {
|
||||||
|
@ -27,7 +30,7 @@ in
|
||||||
};
|
};
|
||||||
thunderbird = {
|
thunderbird = {
|
||||||
enable = true;
|
enable = true;
|
||||||
profiles = [ "chris" ];
|
profiles = [ config.snowfallorg.user.name ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
{ config, lib, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf mkEnableOption;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.application.thunderbird;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.application.thunderbird = {
|
|
||||||
enable = mkEnableOption "enable thunderbird";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
programs.thunderbird = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -21,7 +21,6 @@
|
||||||
|
|
||||||
application = {
|
application = {
|
||||||
steam.enable = true;
|
steam.enable = true;
|
||||||
thunderbird.enable = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
editor = {
|
editor = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue