From d43b0c36160e0950537f172d64a84b96df449a43 Mon Sep 17 00:00:00 2001 From: Leonora Tindall Date: Sun, 12 Jan 2025 17:31:28 -0600 Subject: [PATCH] Configurable JJ --- home.nix | 1 + jj.nix | 12 ++++++++++++ packages-min.nix | 1 - packages.nix | 1 - timberhearth.nix | 1 + 5 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 jj.nix diff --git a/home.nix b/home.nix index 69013f6..af6f95a 100644 --- a/home.nix +++ b/home.nix @@ -15,6 +15,7 @@ in ./direnv.nix ./syncthing.nix ./fzf.nix + ./jj.nix ./packages.nix ]; diff --git a/jj.nix b/jj.nix new file mode 100644 index 0000000..adcc374 --- /dev/null +++ b/jj.nix @@ -0,0 +1,12 @@ +{ config, pkgs, ...}: +{ + programs.jujutsu = { + enable = true; + settings = { + user = { + email = "nora@nora.codes"; + name = "Leonora Tindall"; + }; + }; + }; +} diff --git a/packages-min.nix b/packages-min.nix index 3812cf6..674fcce 100644 --- a/packages-min.nix +++ b/packages-min.nix @@ -13,7 +13,6 @@ dfc yt-dlp (pkgs.callPackage ./custom/fortune-kind-custom.nix {}) - jujutsu fend timg graphviz diff --git a/packages.nix b/packages.nix index d1b415a..687c9be 100644 --- a/packages.nix +++ b/packages.nix @@ -40,7 +40,6 @@ in yt-dlp (pkgs.callPackage ./custom/fortune-kind-custom.nix {}) (nixGL aseprite) - jujutsu (nixGL musescore) fend timg diff --git a/timberhearth.nix b/timberhearth.nix index a539c08..14cd9fa 100644 --- a/timberhearth.nix +++ b/timberhearth.nix @@ -15,6 +15,7 @@ in ./syncthing.nix ./fzf.nix ./zellij.nix + ./jj.nix ./packages-min.nix ];