From 14b6a504e7af9a4e8689cf104700d5d40863b95a Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sun, 1 Dec 2024 22:29:17 -0600 Subject: [PATCH] added timezone --- configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 22e8921..fd3949b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -3,7 +3,6 @@ let stateVersion = "24.05"; userName = "loki"; repoPath = "/srv/loki"; - unstable = import {}; in { system.stateVersion = stateVersion; @@ -14,6 +13,8 @@ in (import ./loki.nix { inherit pkgs; inherit userName; }) ]; + time.timeZone = "America/Chicago"; + environment.systemPackages = with pkgs; [ (pkgs.writeShellScriptBin "nrbs" "sudo nixos-rebuild switch") (pkgs.writeShellScriptBin "nrbsu" "sudo nix-channel --update && sudo nixos-rebuild switch")