ea3644cb09
A quick previewer for Nautilus http://en.wikipedia.org/wiki/Sushi_(software)
38 lines
537 B
Nix
38 lines
537 B
Nix
# GNOME Sushi daemon.
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
with pkgs.lib;
|
|
|
|
{
|
|
|
|
###### 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 {
|
|
|
|
environment.systemPackages = [ pkgs.gnome3.sushi ];
|
|
|
|
services.dbus.packages = [ pkgs.gnome3.sushi ];
|
|
|
|
};
|
|
|
|
}
|