diff --git a/nixos/home.nix b/nixos/home.nix index 46037af..47fa585 100644 --- a/nixos/home.nix +++ b/nixos/home.nix @@ -95,6 +95,14 @@ in 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" = { source = config.lib.file.mkOutOfStoreSymlink "/mnt/data/.ssh"; recursive = false; @@ -107,6 +115,9 @@ in home.sessionPath = [ "${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)