diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-19 15:37:02 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-19 15:37:02 -0400 |
commit | 9f36f5c0823e69cc9276be39ada565577b112c9a (patch) | |
tree | 57f294b9b482996c416988c82d61f1548ea40f95 /pkgs/astal/src/lib.lua | |
parent | refactor neovim, split out init.lua (diff) | |
download | dotfiles-nix-9f36f5c0823e69cc9276be39ada565577b112c9a.tar.gz dotfiles-nix-9f36f5c0823e69cc9276be39ada565577b112c9a.tar.bz2 dotfiles-nix-9f36f5c0823e69cc9276be39ada565577b112c9a.zip |
fix astal to not hardcare UTC
Diffstat (limited to '')
-rw-r--r-- | pkgs/astal/src/lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/astal/src/lib.lua b/pkgs/astal/src/lib.lua index 7fa326a..8b1e443 100644 --- a/pkgs/astal/src/lib.lua +++ b/pkgs/astal/src/lib.lua @@ -138,7 +138,7 @@ lib = { --- returns current unix epoch unix = function() - return os.time(os.date("!*t")) + return os.time(os.date("*t")) end, --- formats a time |