nixos-combined-flake/modules/home-manager/user/default.nix

13 lines
291 B
Nix

{ vars, ... }: {
home = {
inherit (vars) username homeDirectory;
language.base = vars.locale;
stateVersion = "23.11";
sessionVariables = {
EDITOR = "vim";
DIRENV_LOG_FORMAT = "`tput dim`%s`tput sgr0`";
DOOMWADDIR = "$HOME/Games/doom/IWADs";
};
};
}