From e3779851bb1e4eb62c2c026f7d1a9f80a6157ff6 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 2 Jan 2025 07:20:42 -0700 Subject: [PATCH] Move timezone to be alpha-sorted --- sovr/etc/nixos/configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sovr/etc/nixos/configuration.nix b/sovr/etc/nixos/configuration.nix index e35a189..c3945a6 100644 --- a/sovr/etc/nixos/configuration.nix +++ b/sovr/etc/nixos/configuration.nix @@ -40,9 +40,6 @@ programs.neovim.enable = true; programs.neovim.defaultEditor = true; - # Set your time zone. - time.timeZone = "America/Phoenix"; - # Configure network proxy if necessary # networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; @@ -55,6 +52,9 @@ systemd.network.enable = true; + # Set your time zone. + time.timeZone = "America/Phoenix"; + users.users.eliribble = { initialHashedPassword = "$y$j9T$XYOMZR8RZEiTnpaF8lsxv1$H7YbWDpzbnYXTLN0ZMhvtKOlSMy64P7C/RdLBaeaNf/"; isNormalUser = true;