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