Disable jj and add ~/.local/bin to path.

This commit is contained in:
Nolan Darilek 2025-04-18 19:38:03 -05:00
parent f6bbe8f4d9
commit db901f2bf5

View file

@ -44,15 +44,15 @@
credential.helper = "${pkgs.git.override { withLibsecret = true; }}/bin/git-credential-libsecret";
};
};
jujutsu = {
enable = true;
settings = {
user = {
name = "Nolan Darilek";
email = "nolan@thewordnerd.info";
};
};
};
# jujutsu = {
# enable = true;
# settings = {
# user = {
# name = "Nolan Darilek";
# email = "nolan@thewordnerd.info";
# };
# };
# };
obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
@ -65,4 +65,8 @@
};
};
};
environment.sessionVariables = {
PATH = [ "$HOME/.local/bin" ];
};
}