Add back evolution?
This commit is contained in:
parent
490aa3ad35
commit
470422b5a5
|
@ -26,6 +26,16 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
accounts = { pkgs, ... }: mkIf config.common.linux.enable {
|
||||||
|
environment.systemPackages = with pkgs.gnome; [ pkgs.glib gnome-control-center ];
|
||||||
|
services.accounts-daemon.enable = true;
|
||||||
|
services.gnome.gnome-online-accounts.enable = true;
|
||||||
|
programs.evolution.enable = true;
|
||||||
|
programs.evolution.plugins = with pkgs; [ evolution-ews ];
|
||||||
|
services.gnome.evolution-data-server.enable = true;
|
||||||
|
services.gnome.evolution-data-server.plugins = with pkgs; [ evolution-ews ];
|
||||||
|
};
|
||||||
|
|
||||||
wlr = { ... }: mkIf config.common.linux.enable {
|
wlr = { ... }: mkIf config.common.linux.enable {
|
||||||
# swaync disable notifications on screencast
|
# swaync disable notifications on screencast
|
||||||
xdg.portal.wlr.settings.screencast = {
|
xdg.portal.wlr.settings.screencast = {
|
||||||
|
@ -54,7 +64,7 @@ let
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = with modules; [ adb ios wlr logitech virtualisation ];
|
imports = with modules; [ adb ios wlr logitech virtualisation accounts ];
|
||||||
|
|
||||||
options.common.linux = {
|
options.common.linux = {
|
||||||
enable = mkOption {
|
enable = mkOption {
|
||||||
|
|
Loading…
Reference in a new issue