From 0d616266ff6a9246e65437040cc4680f8bf36c72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Rivera?= Date: Sun, 26 Jul 2026 21:54:17 +0200 Subject: [PATCH 1/9] fix pagers --- modules/hosts/laptop.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/hosts/laptop.nix b/modules/hosts/laptop.nix index 275fae7..a23848b 100644 --- a/modules/hosts/laptop.nix +++ b/modules/hosts/laptop.nix @@ -130,6 +130,8 @@ home.sessionVariables = { EDITOR = "neovim"; TERMINAL = "kitty"; + SYSTEMD_PAGER = "cat"; + PAGER = "cat"; }; # Required for Home Manager From 9f9906d4230163237fc86a48dd5e91ae20dc1e1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Rivera?= Date: Wed, 29 Jul 2026 18:46:20 +0200 Subject: [PATCH 2/9] replace rss reader --- modules/utilities/rss.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/utilities/rss.nix b/modules/utilities/rss.nix index f6ca8f3..2d6c46b 100644 --- a/modules/utilities/rss.nix +++ b/modules/utilities/rss.nix @@ -1,7 +1,7 @@ _: { flake.nixosModules.rss = {pkgs, ...}: { environment.systemPackages = with pkgs; [ - nom + fluent-reader ]; }; } From 262476404e5776c69e5e121927ca4848985a869e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Rivera?= Date: Thu, 30 Jul 2026 14:06:41 +0200 Subject: [PATCH 3/9] tmux: init config --- modules/hosts/desktop.nix | 1 + modules/hosts/laptop.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/modules/hosts/desktop.nix b/modules/hosts/desktop.nix index 7b4bc3f..9b28e77 100644 --- a/modules/hosts/desktop.nix +++ b/modules/hosts/desktop.nix @@ -80,6 +80,7 @@ swaync # used in performance mode thunderbird tomasr + tmux vivify waybar-minimal # used in performance mode zoxide diff --git a/modules/hosts/laptop.nix b/modules/hosts/laptop.nix index a23848b..26625de 100644 --- a/modules/hosts/laptop.nix +++ b/modules/hosts/laptop.nix @@ -80,6 +80,7 @@ ssh swaync # used in performance mode thunderbird + tmux tomasr vivify waybar-minimal # used in performance mode From d0a9511ff7180deae1cade66141ac460e8683b87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Rivera?= Date: Thu, 30 Jul 2026 21:18:33 +0200 Subject: [PATCH 4/9] first tmux config --- modules/applications/tmux.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 modules/applications/tmux.nix diff --git a/modules/applications/tmux.nix b/modules/applications/tmux.nix new file mode 100644 index 0000000..b07a0b3 --- /dev/null +++ b/modules/applications/tmux.nix @@ -0,0 +1,9 @@ +_: { + + flake.homeModules.tmux = _: { + programs.tmux = { + enable = true; + clock24 = true; + }; + }; +} From 4c0fbc5f0e8e4a1dfd9b80efa713d3969d3adc03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Rivera?= Date: Thu, 30 Jul 2026 21:28:31 +0200 Subject: [PATCH 5/9] librewolf: remove old bookmark --- modules/applications/browser.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/applications/browser.nix b/modules/applications/browser.nix index db75d9f..e9c051c 100644 --- a/modules/applications/browser.nix +++ b/modules/applications/browser.nix @@ -344,12 +344,6 @@ keyword = "nixpkgs tracker"; url = "https://nixpk.gs/pr-tracker.html"; } - { - name = "fahrlehrer"; - tags = ["theorie" "fahrlehrer" "conduite"]; - keyword = "fahrlehrer24"; - url = "https://app.fahrlehrer24.ch/"; - } { name = "cogito"; tags = ["cogito" "esprit" "critique"]; From b4537796a26e312a24def7a087ef84c2ace990a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Rivera?= Date: Tue, 4 Aug 2026 11:21:17 +0200 Subject: [PATCH 6/9] add KOrganizer --- modules/utilities/office.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/utilities/office.nix b/modules/utilities/office.nix index 7f8bc4e..8863310 100644 --- a/modules/utilities/office.nix +++ b/modules/utilities/office.nix @@ -3,6 +3,7 @@ _: { environment.systemPackages = with pkgs; [ libreoffice birdtray + kdePackages.korganizer ]; }; } From 550413c6b1a1283723eea25bb252d966c134db1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Rivera?= Date: Tue, 4 Aug 2026 11:25:52 +0200 Subject: [PATCH 7/9] add kontact --- modules/utilities/office.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/utilities/office.nix b/modules/utilities/office.nix index 8863310..b7ae873 100644 --- a/modules/utilities/office.nix +++ b/modules/utilities/office.nix @@ -5,5 +5,6 @@ _: { birdtray kdePackages.korganizer ]; + programs.kde-pim.kontact = true; # needed for korganizer }; } From d1125d157188f59011647fd4f2811b73a825ea17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Rivera?= Date: Tue, 4 Aug 2026 11:29:50 +0200 Subject: [PATCH 8/9] fix calendar? --- modules/utilities/office.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/utilities/office.nix b/modules/utilities/office.nix index b7ae873..b51edc0 100644 --- a/modules/utilities/office.nix +++ b/modules/utilities/office.nix @@ -4,6 +4,10 @@ _: { libreoffice birdtray kdePackages.korganizer + #needed for korganizer + kdePackages.akonadi + kdePackages.akonadi-calendar + kdePackages.akonadi-calendar-tools ]; programs.kde-pim.kontact = true; # needed for korganizer }; From 0e222a9c50d12cac830582f06f9289f46803f13d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Rivera?= Date: Tue, 4 Aug 2026 19:50:32 +0200 Subject: [PATCH 9/9] rss reader --- modules/utilities/rss.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/utilities/rss.nix b/modules/utilities/rss.nix index 2d6c46b..e12a5c9 100644 --- a/modules/utilities/rss.nix +++ b/modules/utilities/rss.nix @@ -1,7 +1,7 @@ _: { flake.nixosModules.rss = {pkgs, ...}: { environment.systemPackages = with pkgs; [ - fluent-reader + newsflash ]; }; }