Set up time.

This commit is contained in:
jay
2025-06-29 07:40:48 -04:00
parent 5db74a5edc
commit 43bf595e24
3 changed files with 6 additions and 3 deletions

View File

@@ -12,6 +12,7 @@
./services/sound.nix ./services/sound.nix
./system/bluetooth.nix ./system/bluetooth.nix
./system/locale.nix ./system/locale.nix
./system/time.nix
]; ];
nixpkgs = { nixpkgs = {

View File

@@ -0,0 +1,5 @@
{ ... }: {
# Set your time zone.
time.timeZone = "America/Montreal";
}

View File

@@ -24,9 +24,6 @@
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
# Set your time zone.
time.timeZone = "America/Montreal";
# Configure network proxy if necessary # Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";