From 3b57e2863b9455f73072f6bfb75eefc59fdb17d1 Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Fri, 31 Jul 2026 09:57:35 +0300 Subject: [PATCH 1/2] add nix profile to path --- home.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home.nix b/home.nix index 5272c2e..ea8b6a9 100644 --- a/home.nix +++ b/home.nix @@ -25,6 +25,10 @@ EDITOR = "emacs"; }; + home.sessionPath = [ + "$HOME/.nix-profile/bin" + ]; + programs.home-manager.enable = true; programs.direnv.enable = true; From 9685954f07750c55563cb23a10bd720dee2e19f2 Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Wed, 26 Aug 2026 08:36:06 +0300 Subject: [PATCH 2/2] set utf-8 locale --- home.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home.nix b/home.nix index ea8b6a9..58a22d7 100644 --- a/home.nix +++ b/home.nix @@ -23,6 +23,8 @@ home.sessionVariables = { EDITOR = "emacs"; + LANG = "C.UTF-8"; + LC_CTYPE = "C.UTF-8"; }; home.sessionPath = [ @@ -54,6 +56,8 @@ enableCompletion = true; # TODO add your custom bashrc here bashrcExtra = '' + export LANG=C.UTF-8 + export LC_CTYPE=C.UTF-8 export PATH=/home/yisroel/.config/composer/vendor/bin:$PATH export PATH=/home/yisroel/.opencode/bin:$PATH '';