diff --git a/hosts/tohru/configuration.nix b/hosts/tohru/configuration.nix index 3e7dbed..81891b7 100644 --- a/hosts/tohru/configuration.nix +++ b/hosts/tohru/configuration.nix @@ -5,6 +5,7 @@ [ ./hardware-configuration.nix ./home.nix + ../../services/evolution.nix ../../services/fonts.nix ../../services/steam.nix ./syncthing.nix diff --git a/services/evolution.nix b/services/evolution.nix new file mode 100644 index 0000000..900fb38 --- /dev/null +++ b/services/evolution.nix @@ -0,0 +1,5 @@ +{ config, lib, pkgs, ... }: + +{ + programs.evolution.enable = true; +}