From 4fbdadbe6f3b790da5468296b6de99383170534d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Sat, 17 May 2025 22:10:51 +0200 Subject: [PATCH] feat: add initial jujutsu config --- machines/moritz-desktop/configuration.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/machines/moritz-desktop/configuration.nix b/machines/moritz-desktop/configuration.nix index d7cb2b0..51c2cbe 100644 --- a/machines/moritz-desktop/configuration.nix +++ b/machines/moritz-desktop/configuration.nix @@ -45,6 +45,24 @@ networking.firewall.allowedTCPPorts = [9090]; + # TODO: make this its own module! + home-manager.users.moritz.programs.jujutsu = { + enable = true; + settings = { + user = { + email = "mail@moritzboeh.me"; + name = "Moritz Böhme"; + }; + ui.paginate = "never"; + signing = { + behavior = "drop"; + backend = "gpg"; + key = "0x970C6E89EB0547A9"; + }; + git.sign-on-push = true; + }; + }; + home-manager.users.moritz.services.kanshi.settings = [ { profile.name = "default";