From 35563b1b07ce5f841fb820259912b59a8818bb38 Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Thu, 18 Jul 2024 23:28:16 +0100 Subject: [PATCH] tohru: install evolution --- hosts/tohru/configuration.nix | 1 + services/evolution.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 services/evolution.nix 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; +}