From 79144c44e5fc79f3cb334c0dd2dbfbeac576c541 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Wed, 22 Oct 2025 01:54:38 +1100 Subject: [PATCH] build: delta has been moved from programs.git.delta to programs.delta --- modules/home-manager/default.nix | 1 + modules/home-manager/features/delta.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 modules/home-manager/features/delta.nix diff --git a/modules/home-manager/default.nix b/modules/home-manager/default.nix index 38bf1f1..7c8e20d 100644 --- a/modules/home-manager/default.nix +++ b/modules/home-manager/default.nix @@ -7,6 +7,7 @@ # keep-sorted start "agenix" "bat" + "delta" "direnv" "eza" "fish" diff --git a/modules/home-manager/features/delta.nix b/modules/home-manager/features/delta.nix new file mode 100644 index 0000000..06dd631 --- /dev/null +++ b/modules/home-manager/features/delta.nix @@ -0,0 +1,6 @@ +{ + programs.delta = { + enable = true; + options.theme = "Dracula"; + }; +}