From 110ff1ca0003b9712a2a9d5cbec5cc55031ab1b5 Mon Sep 17 00:00:00 2001 From: Tao Tien <29749622+taotien@users.noreply.github.com> Date: Tue, 6 Feb 2024 11:08:27 -0800 Subject: [PATCH] add jujutsu --- extras/dev.nix | 2 ++ users/tao/helix.nix | 10 +++------- users/tao/home.nix | 10 ++++++++++ 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/extras/dev.nix b/extras/dev.nix index 54df75a..4ee42f8 100644 --- a/extras/dev.nix +++ b/extras/dev.nix @@ -1,5 +1,7 @@ { pkgs, ... }: { environment.systemPackages = with pkgs; [ + jujutsu + vscode-langservers-extracted mold-wrapped jetbrains.idea-community jdt-language-server diff --git a/users/tao/helix.nix b/users/tao/helix.nix index 651a3ac..a86c3c0 100644 --- a/users/tao/helix.nix +++ b/users/tao/helix.nix @@ -36,18 +36,14 @@ command = "clang-format"; args = [ "--style=file:/home/tao/Templates/clang-format" ]; }; - indent = { - tab-width = 8; - unit = "\t"; - }; + indent = { tab-width = 8; unit = "\t"; }; } { name = "nix"; auto-format = true; - formatter = { - command = "nixpkgs-fmt"; - }; + formatter = { command = "nixpkgs-fmt"; }; } + { name = "html"; auto-format = true; indent = { tab-width = 4; unit = "\t"; }; } ]; grammar = [ { diff --git a/users/tao/home.nix b/users/tao/home.nix index 436621a..8508be2 100644 --- a/users/tao/home.nix +++ b/users/tao/home.nix @@ -6,6 +6,16 @@ programs = { + jujutsu = { + enable = true; + settings = { + user = { + name = "Tao Tien"; + email = "29749622+taotien@users.noreply.github.com"; + }; + }; + }; + git = { enable = true; userName = "Tao Tien";