From 1f45c1336fc79bb4a0742d57469ca63e99cedde8 Mon Sep 17 00:00:00 2001 From: Kris Lamoureux Date: Sun, 28 Jun 2026 15:11:02 -0400 Subject: [PATCH] Configure timezone and install common programs --- configuration.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 9a6f92d..f144243 100644 --- a/configuration.nix +++ b/configuration.nix @@ -46,7 +46,7 @@ }; # Set your time zone. - # time.timeZone = "Europe/Amsterdam"; + time.timeZone = "America/New_York"; # Configure network proxy if necessary # networking.proxy.default = "http://user:password@proxy:port/"; @@ -118,7 +118,13 @@ # List packages installed in system profile. # You can use https://search.nixos.org/ to find more packages (and options). environment.systemPackages = with pkgs; [ + chromium + ncdu + terminator + tmux + tree vim + vscodium wget ];