Unverified Commit 9959fe25 authored by Bernardo Meurer's avatar Bernardo Meurer Committed by GitHub
Browse files

Merge pull request #195135 from maxbrunet/feat/automatic-timezoned/init

parents e3bd5d17 29b5192b
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -8685,6 +8685,15 @@
    keys = [{
      fingerprint = "1DE4 424D BF77 1192 5DC4  CF5E 9AED 8814 81D8 444E";
    }];
  };
   maxbrunet = {
    email = "max@brnt.mx";
    github = "maxbrunet";
    githubId = 32458727;
    name = "Maxime Brunet";
    keys = [{
      fingerprint = "E9A2 EE26 EAC6 B3ED 6C10  61F3 4379 62FF 87EC FE2B";
    }];
  };
  maxdamantus = {
    email = "maxdamantus@gmail.com";
+8 −0
Original line number Diff line number Diff line
@@ -205,6 +205,14 @@
          <link xlink:href="options.html#opt-virtualisation.appvm.enable">virtualisation.appvm</link>.
        </para>
      </listitem>
      <listitem>
        <para>
          <link xlink:href="https://github.com/maxbrunet/automatic-timezoned">automatic-timezoned</link>.
          a Linux daemon to automatically update the system timezone
          based on location. Available as
          <link linkend="opt-services.automatic-timezoned.enable">services.automatic-timezoned</link>.
        </para>
      </listitem>
      <listitem>
        <para>
          [xray] (https://github.com/XTLS/Xray-core), a fully compatible
+2 −0
Original line number Diff line number Diff line
@@ -78,6 +78,8 @@ In addition to numerous new and upgraded packages, this release has the followin

- [appvm](https://github.com/jollheef/appvm), Nix based app VMs. Available as [virtualisation.appvm](options.html#opt-virtualisation.appvm.enable).

- [automatic-timezoned](https://github.com/maxbrunet/automatic-timezoned). a Linux daemon to automatically update the system timezone based on location. Available as [services.automatic-timezoned](#opt-services.automatic-timezoned.enable).

- [xray] (https://github.com/XTLS/Xray-core), a fully compatible v2ray-core replacement. Features XTLS, which when enabled on server and client, brings UDP FullCone NAT to proxy setups. Available as [services.xray](options.html#opt-services.xray.enable).

- [syncstorage-rs](https://github.com/mozilla-services/syncstorage-rs), a self-hostable sync server for Firefox. Available as [services.firefox-syncserver](options.html#opt-services.firefox-syncserver.enable).
+2 −0
Original line number Diff line number Diff line
@@ -355,6 +355,7 @@ in
      pipewire = 323;
      rstudio-server = 324;
      localtimed = 325;
      automatic-timezoned = 326;

      # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399!

@@ -664,6 +665,7 @@ in
      pipewire = 323;
      rstudio-server = 324;
      localtimed = 325;
      automatic-timezoned = 326;

      # When adding a gid, make sure it doesn't match an existing
      # uid. Users and groups with the same name should have equal
+1 −0
Original line number Diff line number Diff line
@@ -1049,6 +1049,7 @@
  ./services/security/vault.nix
  ./services/security/vaultwarden/default.nix
  ./services/security/yubikey-agent.nix
  ./services/system/automatic-timezoned.nix
  ./services/system/cachix-agent/default.nix
  ./services/system/cachix-watch-store.nix
  ./services/system/cloud-init.nix
Loading