Currently, a user is created in the 1000-29999 range. This is incorrect, as localtimed is a system service and not a user.
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, ... }:
 | 
						|
 | 
						|
with lib;
 | 
						|
 | 
						|
let
 | 
						|
  cfg = config.services.localtime;
 | 
						|
in {
 | 
						|
  options = {
 | 
						|
    services.localtime = {
 | 
						|
      enable = mkOption {
 | 
						|
        type = types.bool;
 | 
						|
        default = false;
 | 
						|
        description = ''
 | 
						|
          Enable <literal>localtime</literal>, simple daemon for keeping the system
 | 
						|
          timezone up-to-date based on the current location. It uses geoclue2 to
 | 
						|
          determine the current location and systemd-timedated to actually set
 | 
						|
          the timezone.
 | 
						|
        '';
 | 
						|
      };
 | 
						|
    };
 | 
						|
  };
 | 
						|
 | 
						|
  config = mkIf cfg.enable {
 | 
						|
    services.geoclue2 = {
 | 
						|
      enable = true;
 | 
						|
      appConfig.localtime = {
 | 
						|
        isAllowed = true;
 | 
						|
        isSystem = true;
 | 
						|
      };
 | 
						|
    };
 | 
						|
 | 
						|
    # Install the polkit rules.
 | 
						|
    environment.systemPackages = [ pkgs.localtime ];
 | 
						|
    # Install the systemd unit.
 | 
						|
    systemd.packages = [ pkgs.localtime ];
 | 
						|
 | 
						|
    users.users.localtimed = {
 | 
						|
      description = "localtime daemon";
 | 
						|
      isSystemUser = true;
 | 
						|
    };
 | 
						|
 | 
						|
    systemd.services.localtime = {
 | 
						|
      wantedBy = [ "multi-user.target" ];
 | 
						|
      serviceConfig.Restart = "on-failure";
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |