From 80c22d63e0253095a7d394d9ce23c58a41c787cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 28 Jan 2026 15:00:58 +0100 Subject: [PATCH 1/4] image: add and configure --- modules/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/default.nix b/modules/default.nix index 8dbfe4b..739f1ad 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -83,6 +83,17 @@ crates.enable = true; fidget.enable = true; gitsigns.enable = true; + image = { + enable = true; + settings = { + backend = "sixel"; # Me and Marcel use Wezterm + integrations = { + css.enabled = true; + markdown.only_render_image_at_cursor = true; + html.enabled = true; + }; + }; + }; indent-blankline.enable = true; lastplace.enable = true; lualine = { From d51ea68075cc8abb515c0567cd9011e3e124943d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 28 Jan 2026 15:08:34 +0100 Subject: [PATCH 2/4] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/9da7f1cf7f8a6e2a7cb3001b048546c92a8258b4?narHash=sha256-SlybxLZ1/e4T2lb1czEtWVzDCVSTvk9WLwGhmxFmBxI%3D' (2025-11-11) → 'github:NixOS/nixpkgs/bfc1b8a4574108ceef22f02bafcf6611380c100d?narHash=sha256-msG8SU5WsBUfVVa/9RPLaymvi5bI8edTavbIq3vRlhI%3D' (2026-01-26) • Updated input 'nixvim': 'github:nix-community/nixvim/84902b354fd0f122c40880b90dc8ac89d4d0daea?narHash=sha256-%2BT9oUulnXOQmy37GGOivHSvEyViA4gQ41mFZEPEDuOA%3D' (2025-11-11) → 'github:nix-community/nixvim/7addac6d111837217c16762968a9042eac703f7e?narHash=sha256-N7famD4s2hiDIicr9mJWhUj8l9EULB60%2B1QN/S%2BUjeM%3D' (2026-01-27) • Updated input 'nixvim/flake-parts': 'github:hercules-ci/flake-parts/0bdadb1b265fb4143a75bd1ec7d8c915898a9923?narHash=sha256-dxFVgQPG%2BR72dkhXTtqUm7KpxElw3u6E%2BYlQ2WaDgt8%3D' (2025-11-10) → 'github:hercules-ci/flake-parts/80daad04eddbbf5a4d883996a73f3f542fa437ac?narHash=sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY%3D' (2026-01-11) • Removed input 'nixvim/nuschtosSearch' --- flake.lock | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/flake.lock b/flake.lock index aaab83b..3450581 100644 --- a/flake.lock +++ b/flake.lock @@ -8,11 +8,11 @@ ] }, "locked": { - "lastModified": 1762810396, - "narHash": "sha256-dxFVgQPG+R72dkhXTtqUm7KpxElw3u6E+YlQ2WaDgt8=", + "lastModified": 1768135262, + "narHash": "sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "0bdadb1b265fb4143a75bd1ec7d8c915898a9923", + "rev": "80daad04eddbbf5a4d883996a73f3f542fa437ac", "type": "github" }, "original": { @@ -44,11 +44,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1762844143, - "narHash": "sha256-SlybxLZ1/e4T2lb1czEtWVzDCVSTvk9WLwGhmxFmBxI=", + "lastModified": 1769461804, + "narHash": "sha256-msG8SU5WsBUfVVa/9RPLaymvi5bI8edTavbIq3vRlhI=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "9da7f1cf7f8a6e2a7cb3001b048546c92a8258b4", + "rev": "bfc1b8a4574108ceef22f02bafcf6611380c100d", "type": "github" }, "original": { @@ -64,15 +64,14 @@ "nixpkgs": [ "nixpkgs" ], - "nuschtosSearch": [], "systems": "systems" }, "locked": { - "lastModified": 1762904125, - "narHash": "sha256-+T9oUulnXOQmy37GGOivHSvEyViA4gQ41mFZEPEDuOA=", + "lastModified": 1769537308, + "narHash": "sha256-N7famD4s2hiDIicr9mJWhUj8l9EULB60+1QN/S+UjeM=", "owner": "nix-community", "repo": "nixvim", - "rev": "84902b354fd0f122c40880b90dc8ac89d4d0daea", + "rev": "7addac6d111837217c16762968a9042eac703f7e", "type": "github" }, "original": { From cb5550d19f87a9024125cc69223aa9dd5fe70b7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 28 Jan 2026 15:08:38 +0100 Subject: [PATCH 3/4] Test with 25.11 --- .github/workflows/flake-build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/flake-build.yaml b/.github/workflows/flake-build.yaml index f00bccd..aa5a2c1 100644 --- a/.github/workflows/flake-build.yaml +++ b/.github/workflows/flake-build.yaml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - target: [ "25.05", "unstable" ] + target: [ "25.11", "unstable" ] steps: - uses: actions/checkout@v5 @@ -34,8 +34,8 @@ jobs: if: matrix.target != 'unstable' run: | nix build -L \ - --override-input nixpkgs github:NixOS/nixpkgs/nixos-25.05 \ - --override-input nixvim github:nix-community/nixvim/nixos-25.05 + --override-input nixpkgs github:NixOS/nixpkgs/nixos-25.11 \ + --override-input nixvim github:nix-community/nixvim/nixos-25.11 - name: build unstable if: matrix.target == 'unstable' From d8ce48914ec441ceff2b1129d46c82d94c673763 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 28 Jan 2026 15:09:01 +0100 Subject: [PATCH 4/4] Clean up flake inputs --- flake.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index bb42de3..daacb09 100644 --- a/flake.nix +++ b/flake.nix @@ -11,11 +11,7 @@ nixvim = { url = "github:nix-community/nixvim"; - inputs = { - nixpkgs.follows = "nixpkgs"; - # https://github.com/nix-community/nixvim/blob/main/flake.nix#L12-L34 - nuschtosSearch.follows = ""; - }; + inputs.nixpkgs.follows = "nixpkgs"; }; };