nixos: move geoclue base -> workstation

This commit is contained in:
ooks-io 2024-10-27 23:16:37 +11:00
parent 8a165354f9
commit 27a9e04281
3 changed files with 5 additions and 2 deletions

View file

@ -1,7 +1,5 @@
{
time.timeZone = "Antarctica/Macquarie";
location.provider = "geoclue2";
services.geoclue2.enable = true;
i18n = {
defaultLocale = "en_US.UTF-8";
supportedLocales = ["en_US.UTF-8/UTF-8"];

View file

@ -2,5 +2,6 @@
imports = [
./dbus.nix
./gnome-services.nix
./geoclue.nix
];
}

View file

@ -0,0 +1,4 @@
{
services.geoclue2.enable = true;
location.provider = "geoclue2";
}