various: environment.sessionVariables => environment.variables
Signed-off-by: Bloxx12 <charlie@charlieroot.dev> Change-Id: I6a6a696495dd9b0b531ce319785d337e6f5b173f
This commit is contained in:
parent
3bd3da0c0d
commit
49882fbae8
3 changed files with 3 additions and 3 deletions
|
@ -49,5 +49,5 @@ in {
|
||||||
inherit (pkgs) uutils-coreutils-noprefix;
|
inherit (pkgs) uutils-coreutils-noprefix;
|
||||||
});
|
});
|
||||||
# helix as the only editor, a reasonable choice.
|
# helix as the only editor, a reasonable choice.
|
||||||
environment.sessionVariables.EDITOR = "hx";
|
environment.variables.EDITOR = "hx";
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
in {
|
in {
|
||||||
environment = {
|
environment = {
|
||||||
systemPackages = [pkgs.xdg-utils];
|
systemPackages = [pkgs.xdg-utils];
|
||||||
sessionVariables = {
|
variables = {
|
||||||
TERMINAL = "${terminal}";
|
TERMINAL = "${terminal}";
|
||||||
XDG_CACHE_HOME = "/home/${username}/.config";
|
XDG_CACHE_HOME = "/home/${username}/.config";
|
||||||
};
|
};
|
||||||
|
|
|
@ -28,7 +28,7 @@ in {
|
||||||
};
|
};
|
||||||
# Set the ssh socket globally. This alows all applications and shells to use
|
# Set the ssh socket globally. This alows all applications and shells to use
|
||||||
# the ssh-agent.
|
# the ssh-agent.
|
||||||
sessionVariables."SSH_AUTH_SOCK" = "/run/user/1000/ssh-agent.sock";
|
variables."SSH_AUTH_SOCK" = "/run/user/1000/ssh-agent.sock";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue