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.

Use DOST-PAGASA + Cloudflare Time Service for the NTP servers

Alongside updating the enabled feature flags for Nix.

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+28 -3
+1
hosts/stellapent-cier/configuration.nix
··· 9 9 [ 10 10 ./hardware-configuration.nix 11 11 ../../shared/meta-configs.nix 12 + ../../shared/systemd.nix 12 13 ../../shared/networking.nix 13 14 ../../shared/locale.nix 14 15 ../../shared/server/tailscale.nix
+8 -3
shared/meta-configs.nix
··· 16 16 17 17 nix = { 18 18 settings = { 19 + # See https://nix.dev/manual/nix/latest/development/experimental-features 20 + # for latest supported feature flags. 19 21 experimental-features = [ 20 22 "nix-command" 21 23 "flakes" 22 - "repl-flake" 23 24 "ca-derivations" 24 25 "cgroups" 25 26 "impure-derivations" 26 - #"daemon-trust-override" 27 - #"auto-allocate-uids" 27 + "git-hashing" 28 + "fetch-tree" 29 + "fetch-closure" 30 + "local-overlay-store" 31 + "mounted-ssh-store" 32 + # "verified-fetches" 28 33 ]; 29 34 30 35 trusted-users = [
+19
shared/systemd.nix
··· 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 + }