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