From 961d6a729359665c9a21551cf201dd0cd9c6f9b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Thu, 15 Aug 2024 16:57:57 +0200 Subject: [PATCH] feat(vcs): install jujutsu to user profile --- nixos/home.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/nixos/home.nix b/nixos/home.nix index 454a8ca..92224e7 100644 --- a/nixos/home.nix +++ b/nixos/home.nix @@ -64,6 +64,17 @@ in { extraConfig.commit.verbose = true; }; + programs.jujutsu = { + enable = true; + settings = { + user = { + email = "khais.colin@gmail.com"; + name = "Khaïs COLIN"; + }; + ui.editor = "nvim"; + }; + }; + programs.zsh = { enable = true; enableVteIntegration = true;