43 lines
593 B
Nix
43 lines
593 B
Nix
# GNOME Sushi daemon.
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
meta = {
|
|
maintainers = teams.gnome.members;
|
|
};
|
|
|
|
###### 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 ];
|
|
|
|
};
|
|
|
|
}
|