diff options
author | tdback <tyler@tdback.net> | 2025-02-02 21:13:39 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-02-02 21:13:39 -0500 |
commit | 2a89ad82628d9f16eb81db848c5757ffae1fe04f (patch) | |
tree | 3cfec8065227ba8022a1050dc17c02595dbfb231 | |
parent | 080909508881d8ab3f013b43eebceeb405e575b2 (diff) |
shell: add hledger for accounting and uv for scripts
-rw-r--r-- | users/tdback/desktop.nix | 2 | ||||
-rw-r--r-- | users/tdback/modules/shell/default.nix | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/users/tdback/desktop.nix b/users/tdback/desktop.nix index 5760bc0..c117e2f 100644 --- a/users/tdback/desktop.nix +++ b/users/tdback/desktop.nix @@ -49,10 +49,12 @@ in feh gimp gitu + hledger imagemagick mpv nixd pciutils + (python312.withPackages (ps: with ps; [ uv ])) zathura ]; diff --git a/users/tdback/modules/shell/default.nix b/users/tdback/modules/shell/default.nix index 329ac96..653c7a8 100644 --- a/users/tdback/modules/shell/default.nix +++ b/users/tdback/modules/shell/default.nix @@ -37,6 +37,7 @@ EDITOR = "vi"; KEYTIMEOUT = 1; LC_ALL = "en_US.UTF-8"; + LEDGER_FILE = "$HOME/Documents/finance/2025.journal"; LESSHISTFILE = "-"; MANPAGER = "less -R --use-color -Dd+r -Du+b"; }; |