Skip to content

Commit e80bc37

Browse files
committed
fix(timezone): only enable automatic timezoned on luna.shorty for now
I might want to extract this to a module for portable devices at some point but this will do for the time being.
1 parent d884eb2 commit e80bc37

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

hosts/luna/default.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,12 @@ in
7676
};
7777

7878
services = {
79+
# TODO: extract automatic timezoned and geolocate to module for portable devices?
80+
automatic-timezoned.enable = true;
81+
geoclue2 = {
82+
enableDemoAgent = mkForce true; # FIXME: see https://github.com/NixOS/nixpkgs/issues/68489#issuecomment-1484030107
83+
geoProviderUrl = "https://beacondb.net/v1/geolocate";
84+
};
7985
getty.autologinUser = "${username}"; # hardcoded because this is a single user system
8086
udisks2.enable = true;
8187
undervolt = {

hosts/shared/default.nix

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ with lib;
1414
};
1515

1616
services = {
17-
# TODO: extract automatic timezoned and geolocate to module for portable devices?
18-
automatic-timezoned.enable = true;
19-
geoclue2 = {
20-
enableDemoAgent = mkForce true; # FIXME: see https://github.com/NixOS/nixpkgs/issues/68489#issuecomment-1484030107
21-
geoProviderUrl = "https://beacondb.net/v1/geolocate";
22-
};
2317
keyd = {
2418
enable = true;
2519
keyboards.default.settings = {

0 commit comments

Comments
 (0)