dotfiles/modules/os/misc/location.nix
eriedaberrie ef322634fe Initial commit
Note: not the actual initial commit.

I swear I will stop repeatedly force pushing to this single commit eventually
ok.
2024-09-08 15:51:41 -07:00

16 lines
282 B
Nix

{ config, lib, ... }:
let
cfg = config.my.location;
in {
options.my.location = {
enable = lib.mkEnableOption null;
};
config = lib.mkIf cfg.enable {
services.geoclue2.enable = true;
location.provider = "geoclue2";
services.localtimed.enable = true;
};
}