libsearpc: 3.3-20230626 -> 3.3-20241031 fix build with GCC14 (#368185)
[NixPkgs.git] / nixos / modules / services / desktops / gnome / sushi.nix
blobea99c7ce30f019827e6ac9b1c5cda54995222226
1 # GNOME Sushi daemon.
4   config,
5   lib,
6   pkgs,
7   ...
8 }:
12   meta = {
13     maintainers = lib.teams.gnome.members;
14   };
16   ###### interface
18   options = {
20     services.gnome.sushi = {
22       enable = lib.mkOption {
23         type = lib.types.bool;
24         default = false;
25         description = ''
26           Whether to enable Sushi, a quick previewer for nautilus.
27         '';
28       };
30     };
32   };
34   ###### implementation
36   config = lib.mkIf config.services.gnome.sushi.enable {
38     environment.systemPackages = [ pkgs.sushi ];
40     services.dbus.packages = [ pkgs.sushi ];
42   };