add jujutsu

This commit is contained in:
Tao Tien 2024-02-06 11:08:27 -08:00
parent 279ed963f3
commit 110ff1ca00
3 changed files with 15 additions and 7 deletions

View file

@ -1,5 +1,7 @@
{ pkgs, ... }: { { pkgs, ... }: {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
jujutsu
vscode-langservers-extracted
mold-wrapped mold-wrapped
jetbrains.idea-community jetbrains.idea-community
jdt-language-server jdt-language-server

View file

@ -36,18 +36,14 @@
command = "clang-format"; command = "clang-format";
args = [ "--style=file:/home/tao/Templates/clang-format" ]; args = [ "--style=file:/home/tao/Templates/clang-format" ];
}; };
indent = { indent = { tab-width = 8; unit = "\t"; };
tab-width = 8;
unit = "\t";
};
} }
{ {
name = "nix"; name = "nix";
auto-format = true; auto-format = true;
formatter = { formatter = { command = "nixpkgs-fmt"; };
command = "nixpkgs-fmt";
};
} }
{ name = "html"; auto-format = true; indent = { tab-width = 4; unit = "\t"; }; }
]; ];
grammar = [ grammar = [
{ {

View file

@ -6,6 +6,16 @@
programs = { programs = {
jujutsu = {
enable = true;
settings = {
user = {
name = "Tao Tien";
email = "29749622+taotien@users.noreply.github.com";
};
};
};
git = { git = {
enable = true; enable = true;
userName = "Tao Tien"; userName = "Tao Tien";