1# GNOME Sushi daemon.
2
3{ config, lib, pkgs, ... }:
4
5with lib;
6
7let
8 gnome3 = config.environment.gnome3.packageSet;
9in
10{
11
12 ###### interface
13
14 options = {
15
16 services.gnome3.sushi = {
17
18 enable = mkOption {
19 type = types.bool;
20 default = false;
21 description = ''
22 Whether to enable Sushi, a quick previewer for nautilus.
23 '';
24 };
25
26 };
27
28 };
29
30
31 ###### implementation
32
33 config = mkIf config.services.gnome3.sushi.enable {
34
35 environment.systemPackages = [ gnome3.sushi ];
36
37 services.dbus.packages = [ gnome3.sushi ];
38
39 };
40
41}