Talk:Environment variables: Difference between revisions

imported>MikiVanousek
Posted a question
 
imported>MikiVanousek
No edit summary
 
Line 1: Line 1:
I have the following in my configuration:
I have the following in my configuration:
```
 
environment.variables = rec {
    environment.variables = rec {
     EDITOR = "nvim";
     EDITOR = "nvim";
     VISUAL = "nvim";
     VISUAL = "nvim";
Line 9: Line 9:
     XDG_STATE_HOME = "$HOME/.local/share";
     XDG_STATE_HOME = "$HOME/.local/share";
     ANDROID_SDK_ROOT = "\${XDG_DATA_HOME}/android";
     ANDROID_SDK_ROOT = "\${XDG_DATA_HOME}/android";
  };
    };
```
 
What is then `ANDROID_SDK_ROOT` after rebuild? `/android`  
What is then `ANDROID_SDK_ROOT` after rebuild? `/android`  
Do you have any idea, why this might be?
Do you have any idea, why this might be?
Return to "Environment variables" page.