Nix configurations for my homelab

lutea/home.nix: remove TODOs and use `home.sessionPath`

yemou.pink 02367c06 50962fd9

verified
Changed files
+8 -9
lutea
+8 -9
lutea/home.nix
···
};
fonts.fontconfig.enable = true;
-
# Fix shell scripts to use full paths and then replace this
-
# Bring it back once we get a sessionPrependPath or something similar
-
# home.sessionPath = [ "${config.home.homeDirectory}/misc/exes" ];
-
home.sessionVariables = {
-
ENV = "${config.xdg.configHome}/loksh/rc";
-
HISTCONTROL = "ignoredups:ignorespace";
-
HISTFILE = "${config.xdg.cacheHome}/loksh_history";
-
PATH = "${config.home.homeDirectory}/.local/bin:$PATH";
-
SLURP_ARGS = "-b 00000040 -w 0";
+
home = {
+
sessionPath = [ "${config.home.homeDirectory}/.local/bin" ];
+
sessionVariables = {
+
ENV = "${config.xdg.configHome}/loksh/rc";
+
HISTCONTROL = "ignoredups:ignorespace";
+
HISTFILE = "${config.xdg.cacheHome}/loksh_history";
+
SLURP_ARGS = "-b 00000040 -w 0";
+
};
};
home.stateVersion = "24.05";