nixpkgs/nixos/modules/services/desktops/geoclue2.nix

42 lines
616 B
Nix
Raw Normal View History

2014-04-24 21:32:32 +00:00
# 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
2017-10-21 05:24:37 +00:00
that provides location information for accessing.
2014-04-24 21:32:32 +00:00
'';
};
};
};
###### implementation
config = mkIf config.services.geoclue2.enable {
environment.systemPackages = [ pkgs.geoclue2 ];
services.dbus.packages = [ pkgs.geoclue2 ];
2015-04-10 15:02:57 +00:00
systemd.packages = [ pkgs.geoclue2 ];
2014-04-24 21:32:32 +00:00
};
}