From ee6bf03506c60222e68316bfb584d66aa9cb1457 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Thu, 25 Apr 2024 12:00:58 -0400 Subject: [PATCH] Set timezone --- home/kakoune/kak.nix | 2 ++ nki-framework/configuration.nix | 3 +++ 2 files changed, 5 insertions(+) diff --git a/home/kakoune/kak.nix b/home/kakoune/kak.nix index a643c6e..ac9c394 100644 --- a/home/kakoune/kak.nix +++ b/home/kakoune/kak.nix @@ -69,6 +69,8 @@ in universal-ctags # tree-sitter for kak kak-tree-sitter + # LSPs + metals ]; # xdg.configFile."kak-tree-sitter/config.toml".source = ./kak-tree-sitter.toml; diff --git a/nki-framework/configuration.nix b/nki-framework/configuration.nix index 75c4aca..ccfe7c5 100644 --- a/nki-framework/configuration.nix +++ b/nki-framework/configuration.nix @@ -72,6 +72,9 @@ security.pam.services.swaylock.fprintAuth = true; security.pam.services.login.fprintAuth = true; + # Override Timezone (hi Canada) + time.timeZone = lib.mkForce "America/Toronto"; + # Secrets # sops.defaultSopsFile = ./secrets.yaml; # sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];