2014-04-07 22:54:07 +01:00
|
|
|
# GNOME Sushi daemon.
|
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2014-04-07 22:54:07 +01:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2014-04-07 22:54:07 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
|
2020-04-02 01:16:24 +01:00
|
|
|
meta = {
|
|
|
|
maintainers = teams.gnome.members;
|
|
|
|
};
|
|
|
|
|
2014-04-07 22:54:07 +01:00
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.gnome3.sushi = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to enable Sushi, a quick previewer for nautilus.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf config.services.gnome3.sushi.enable {
|
|
|
|
|
2017-09-24 12:15:50 +01:00
|
|
|
environment.systemPackages = [ pkgs.gnome3.sushi ];
|
2014-04-07 22:54:07 +01:00
|
|
|
|
2017-09-24 12:15:50 +01:00
|
|
|
services.dbus.packages = [ pkgs.gnome3.sushi ];
|
2014-04-07 22:54:07 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|