• 0 Posts
  • 12 Comments
Joined 3 months ago
cake
Cake day: June 4th, 2025

help-circle

  • I’m fortunate to get native IPv6, so I’m not very familiar, tho I think I have basic understanding.

    Did you mean you need to pick just one of {authoritative DNS server, DNS64} to listen on port 53? No, because the authoritative DNS only needs to be accessible from the outside. Run it on another machine or nonstandard port, then expose via port forwarding. Machines in LAN don’t need direct access to the authoritative DNS server, they can just as well resolve via the regular system.










  • dihutenosa@piefed.socialtoTechnology@lemmy.ml00000
    link
    fedilink
    English
    arrow-up
    1
    ·
    6 days ago

    No idea about TLP, I’m not using that.

    I created a systemd service for setting the charging threshold on boot, works for me.
    This is NixOS syntax, but you get the idea:

    	systemd.services.battery-charge-control = {  
    		description = "Set battery charging behavior";  
    		script = "echo 70 > /sys/class/power_supply/BAT0/charge_start_threshold; echo 81 > /sys/class/power_supply/BAT0/charge_stop_threshold";  
    		wantedBy = [ "multi-user.target" ];  
    	};