Compare commits

...

2 commits

Author SHA1 Message Date
9685954f07
set utf-8 locale 2026-08-26 08:36:06 +03:00
3b57e2863b
add nix profile to path 2026-07-31 09:57:35 +03:00

View file

@ -23,8 +23,14 @@
home.sessionVariables = { home.sessionVariables = {
EDITOR = "emacs"; EDITOR = "emacs";
LANG = "C.UTF-8";
LC_CTYPE = "C.UTF-8";
}; };
home.sessionPath = [
"$HOME/.nix-profile/bin"
];
programs.home-manager.enable = true; programs.home-manager.enable = true;
programs.direnv.enable = true; programs.direnv.enable = true;
@ -50,6 +56,8 @@
enableCompletion = true; enableCompletion = true;
# TODO add your custom bashrc here # TODO add your custom bashrc here
bashrcExtra = '' 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/.config/composer/vendor/bin:$PATH
export PATH=/home/yisroel/.opencode/bin:$PATH export PATH=/home/yisroel/.opencode/bin:$PATH
''; '';