diff options
-rw-r--r-- | home.nix | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,6 +2,7 @@ let solarized-xresources = ./xresources; + homedir = builtins.getEnv "HOME"; in { # Waiting for the accounts feature to land in the 18.03 release branch... @@ -38,7 +39,7 @@ in sessionVariables = { EDITOR = "vim"; LANG = "en_US.UTF-8"; - PATH = "~/bin:~/.cabal/bin:~/.local/bin:$PATH"; + PATH = "${homedir}/bin:${homedir}/.cabal/bin:${homedir}/.local/bin:$PATH"; PAGER = "less"; }; file = { |