mob next [ci-skip] [ci skip] [skip ci]

lastFile:inventories/personal-computer.nix
This commit is contained in:
2026-01-14 11:27:35 +07:00
parent d4aee2bfff
commit f5bfc1cc68
7 changed files with 259 additions and 591 deletions

View File

@@ -0,0 +1,19 @@
{ ... }:
{
_class = "clan.service";
manifest.name = "automatic-timezone";
manifest.description = "Automatic Timezone, using geoclue2 to actually set the timezone";
manifest.categories = [ "System" ];
roles.default = {
perInstance.nixosModule =
{ lib, ... }:
{
services.automatic-timezoned.enable = true;
services.geoclue2 = {
enableDemoAgent = lib.mkForce true;
geoProviderUrl = "https://beacondb.net/v1/geolocate";
};
};
};
}