From 2a0cb8f8dd9596e2f5feab2e3d1b8b15cfcd424f Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Wed, 5 Feb 2025 23:45:38 -0800 Subject: migration: timezones --- hosts/c-pc/configuration.nix | 2 -- snowfall/modules/nixos/system/default.nix | 7 +++++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/hosts/c-pc/configuration.nix b/hosts/c-pc/configuration.nix index 2de93cb..acf8ab2 100644 --- a/hosts/c-pc/configuration.nix +++ b/hosts/c-pc/configuration.nix @@ -10,8 +10,6 @@ programs.fuse.userAllowOther = true; - time.timeZone = "America/Los_Angeles"; - users.users = { root.hashedPasswordFile = "/secrets/passwords/root"; diff --git a/snowfall/modules/nixos/system/default.nix b/snowfall/modules/nixos/system/default.nix index 83263ba..96c5654 100644 --- a/snowfall/modules/nixos/system/default.nix +++ b/snowfall/modules/nixos/system/default.nix @@ -12,6 +12,11 @@ in { default = null; type = nullOr str; }; + + timezone = mkOption { + default = "America/Los_Angeles"; + type = nullOr str; + }; }; config = { @@ -19,5 +24,7 @@ in { networking.hostName = cfg.hostname; networking.hostId = cfg.id; + + time.timeZone = cfg.timezone; }; } -- cgit v1.2.3