[TASK] Add .profile file config

This commit is contained in:
Sebastian Fischer 2026-03-07 22:16:26 +01:00
parent d480b9c328
commit 507f2c35cd

View File

@ -95,6 +95,14 @@ in
home.file.".p10k.zsh".source = ./config/p10k.zsh; home.file.".p10k.zsh".source = ./config/p10k.zsh;
home.file.".profile".text = ''
if [ -n "$BASH_VERSION" ]; then
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
'';
home.file.".ssh" = { home.file.".ssh" = {
source = config.lib.file.mkOutOfStoreSymlink "/mnt/data/.ssh"; source = config.lib.file.mkOutOfStoreSymlink "/mnt/data/.ssh";
recursive = false; recursive = false;
@ -107,6 +115,9 @@ in
home.sessionPath = [ home.sessionPath = [
"${config.home.homeDirectory}/.local/bin" "${config.home.homeDirectory}/.local/bin"
"${config.home.homeDirectory}/bin"
"${config.home.homeDirectory}/.composer/vendor/bin"
"${config.home.homeDirectory}/.local/share/JetBrains/Toolbox/scripts"
]; ];
# GTK Theme (optional, für besseres Aussehen) # GTK Theme (optional, für besseres Aussehen)