nix-config/nixos/_mixins/desktop/evolution.nix
Gregory Burd 86706b1fc7 wimpy-ified
inspired by wimpysworld nix-config
2023-09-25 14:05:07 -04:00

10 lines
200 B
Nix

{ pkgs, ... }: {
environment = {
systemPackages = with pkgs; [
evolutionWithPlugins
];
};
programs.evolution.enable = true;
services.gnome.evolution-data-server.enable = true;
}