depot/third_party/nixpkgs/nixos/modules/services/desktops/tumbler.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

52 lines
653 B
Nix

# Tumbler
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.services.tumbler;
in
{
imports = [
(mkRemovedOptionModule
[ "services" "tumbler" "package" ]
"")
];
meta = with lib; {
maintainers = with maintainers; [ ] ++ teams.pantheon.members;
};
###### interface
options = {
services.tumbler = {
enable = mkEnableOption (lib.mdDoc "Tumbler, A D-Bus thumbnailer service");
};
};
###### implementation
config = mkIf cfg.enable {
environment.systemPackages = with pkgs.xfce; [
tumbler
];
services.dbus.packages = with pkgs.xfce; [
tumbler
];
};
}