vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / services / desktops / gnome / sushi.nix
blob7f7360488eb41b8ba607481333d0e309f287b57a
1 # GNOME Sushi daemon.
3 { config, lib, pkgs, ... }:
7   meta = {
8     maintainers = lib.teams.gnome.members;
9   };
11   ###### interface
13   options = {
15     services.gnome.sushi = {
17       enable = lib.mkOption {
18         type = lib.types.bool;
19         default = false;
20         description = ''
21           Whether to enable Sushi, a quick previewer for nautilus.
22         '';
23       };
25     };
27   };
30   ###### implementation
32   config = lib.mkIf config.services.gnome.sushi.enable {
34     environment.systemPackages = [ pkgs.sushi ];
36     services.dbus.packages = [ pkgs.sushi ];
38   };