NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at e8a911e91a443b74c7eed09f8eee7ce006a6cdfd 19 lines 426 B view raw
1{ ... }: 2 3{ 4 services.timesyncd = { 5 enable = true; 6 servers = [ 7 # https://pubfiles.pagasa.dost.gov.ph/tamss/oras/time_synchronization_for_windows_7_and_8.pdf 8 "ntp.pagasa.dost.gov.ph" 9 # https://www.cloudflare.com/time/ 10 "time.cloudflare.com" 11 ]; 12 fallbackServers = [ 13 "0.asia.pool.ntp.org" 14 "1.asia.pool.ntp.org" 15 "2.asia.pool.ntp.org" 16 "3.asia.pool.ntp.org" 17 ]; 18 }; 19}