summary refs log blame commit diff
path: root/nixos/modules/services/desktops/geoclue2.nix
blob: c5a000d5c6a720d55c2e9e767e05fdb68b81cd2b (plain) (tree)


















                                                            
                                                           















                                                   

                                         


    
# GeoClue 2 daemon.

{ config, lib, pkgs, ... }:

with lib;

{

  ###### interface

  options = {

    services.geoclue2 = {

      enable = mkOption {
        type = types.bool;
        default = false;
        description = ''
          Whether to enable GeoClue 2 daemon, a DBus service
          that provides location information for accessing.
        '';
      };

    };

  };


  ###### implementation

  config = mkIf config.services.geoclue2.enable {

    environment.systemPackages = [ pkgs.geoclue2 ];

    services.dbus.packages = [ pkgs.geoclue2 ];

    systemd.packages = [ pkgs.geoclue2 ];

  };

}