118 current 2024-05-10 22:14:56 24.05.20240419.5c24cf2 6.6.28 *

This commit is contained in:
sadanslargehole 2024-05-10 22:15:05 -04:00
parent 77d3f695d5
commit f531235399
No known key found for this signature in database
GPG key ID: B2E2F4A5161A7800
2 changed files with 102 additions and 2 deletions

View file

@ -123,8 +123,14 @@ in
# '')
(pkgs.writeShellScriptBin "__eslint_default_config" ''
echo $(pwd)
exit 0
if [[ -e ./.eslintrc.json ]]; then
eslint_d $@
exit $?
else
eslint_d --config /home/${config.home.username}/.config/.eslintrc.json $@
exit $?
fi
'')
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage
@ -135,6 +141,10 @@ in
source = ../../dotfiles/kitty;
target = "./.config/kitty";
};
eslint_d_config = {
source = ../../dotfiles/eslintrc.json;
target = "./.config/.eslintrc.json";
};
gh = {
recursive = true;
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nixos/dotfiles/gh";