Adding NFS option and setting up NTP with pool.ntp.org

This commit is contained in:
Tyler Kelley 2024-02-06 00:13:52 -06:00
parent 54ed361d98
commit 5d17e11cb0
2 changed files with 16 additions and 12 deletions

View File

@ -1,4 +1,4 @@
{ pkgs, config, lib, ... }: { pkgs, config, lib, options, ... }:
{ {
# List services that you want to enable: # List services that you want to enable:
@ -35,4 +35,5 @@
auth include login auth include login
''; '';
}; };
networking.timeServers = options.networking.timeServers.default ++ [ "pool.ntp.org" ];
} }

View File

@ -1,11 +1,11 @@
# PLEASE READ THE WIKI FOR DETERMINING
# VALUES FOR THIS PAGE.
# https://gitlab.com/Zaney/zaneyos/-/wikis/Setting-Options
{ {
# User Variables # User Variables
gitUsername = "Tyler Kelley"; gitUsername = "Tyler Kelley";
gitEmail = "tylerzanekelley@gmail.com"; gitEmail = "tylerzanekelley@gmail.com";
theLocale = "en_US.UTF-8";
theKBDLayout = "us";
theLCVariables = "en_US.UTF-8";
theTimezone = "America/Chicago";
theme = "rose-pine"; theme = "rose-pine";
waybarStyle = "style2"; # can be style1-2 waybarStyle = "style2"; # can be style1-2
borderAnim = "on"; # anything other than on disables anim borders in Hyprland borderAnim = "on"; # anything other than on disables anim borders in Hyprland
@ -13,15 +13,18 @@
wallpaperGit = "https://gitlab.com/Zaney/my-wallpapers.git"; wallpaperGit = "https://gitlab.com/Zaney/my-wallpapers.git";
wallpaperDir = "/home/zaney/Pictures/Wallpapers"; wallpaperDir = "/home/zaney/Pictures/Wallpapers";
flakeDir = "/home/zaney/zaneyos"; flakeDir = "/home/zaney/zaneyos";
# Driver selection profile
# Options include amd (tested), intel, nvidia # System Settings
# GPU hybrid options: intel-nvidia, intel-amd theLocale = "en_US.UTF-8";
# vm for both if you are running a vm theKBDLayout = "us";
theLCVariables = "en_US.UTF-8";
theTimezone = "America/Chicago";
cpuType = "intel"; cpuType = "intel";
gpuType = "amd"; gpuType = "amd";
# Run: sudo lshw -c display to find this info
# This is needed ONLY for hybrid nvidia offloading # Optional Settings
# Run: nvidia-offload (insert program name)
intel-bus-id = "PCI:0:2:0"; intel-bus-id = "PCI:0:2:0";
nvidia-bus-id = "PCI:14:0:0"; nvidia-bus-id = "PCI:14:0:0";
nfs = "on";
} }