Add evolution configuration

This commit is contained in:
Fabian Hauser 2022-03-02 14:26:54 +01:00
parent 775e2959f0
commit 650b77015c
2 changed files with 6 additions and 0 deletions

View file

@ -3,6 +3,7 @@
{ {
imports = [ imports = [
./evolution.nix
./firefox.nix ./firefox.nix
./gpg.nix ./gpg.nix
./ssh.nix ./ssh.nix

View file

@ -0,0 +1,5 @@
{ pkgs, ... }: {
home-manager.users.fhauser = {
dconf.settings."org/gnome/evolution-data-server/calendar".notify-enable-audio = false;
};
}