From 95060648b8c487f19ee1c52712094e11308d32a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Wed, 28 May 2025 17:38:31 +0200 Subject: [PATCH] vanadium: +tealdear -tldr --- nix/configurations/vanadium.nix | 1 + nix/configurations/vanadium/home/programs.nix | 2 +- nix/homeModules/common/tealdeer.nix | 5 +++++ 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 nix/homeModules/common/tealdeer.nix diff --git a/nix/configurations/vanadium.nix b/nix/configurations/vanadium.nix index 25423725..b071203d 100644 --- a/nix/configurations/vanadium.nix +++ b/nix/configurations/vanadium.nix @@ -158,6 +158,7 @@ in ../homeModules/common/packages.nix ../homeModules/common/password-store.nix ../homeModules/common/sioyek.nix + ../homeModules/common/tealdeer.nix ../homeModules/common/user-nixconf.nix # diff --git a/nix/configurations/vanadium/home/programs.nix b/nix/configurations/vanadium/home/programs.nix index a0958426..2836b1af 100644 --- a/nix/configurations/vanadium/home/programs.nix +++ b/nix/configurations/vanadium/home/programs.nix @@ -38,7 +38,6 @@ # pretty tui tools pkgs.du-dust - pkgs.tldr pkgs.tokei pkgs.hyperfine pkgs.watchexec @@ -118,6 +117,7 @@ feh.enable = true; sioyek.enable = true; + tealdeer.enable = true; kitty = { enable = true; font.size = 12; # sweet spot for framework 13 diff --git a/nix/homeModules/common/tealdeer.nix b/nix/homeModules/common/tealdeer.nix new file mode 100644 index 00000000..06f81f4d --- /dev/null +++ b/nix/homeModules/common/tealdeer.nix @@ -0,0 +1,5 @@ +{ + programs.tealdeer = { + enableAutoUpdates = true; + }; +}