diff options
| author | Martin Fischer <martin@push-f.com> | 2026-06-12 14:50:55 +0200 |
|---|---|---|
| committer | Martin Fischer <martin@push-f.com> | 2026-06-12 14:58:54 +0200 |
| commit | e553f2d5f3b39b1b99a29177fd5f4612658f1007 (patch) | |
| tree | 486396571528b32fbabab6fbf814ca50568538fb /nixos/profiles/common | |
| parent | 4bbd1e4c6b60ed78aab6bca180ea00de0f911ae8 (diff) | |
refactor: stop running kodi in cage
Since cage 0.2.1 Kodi didn't work anymore. With 0.2.1 it crashed
which was fixed but with the fix Kodi still gives a black screen,
which I reported as https://github.com/cage-kiosk/cage/issues/469.
To keep it working I've been pinning cage to 0.2.0.
This bug still hasn't been fixed in cage 0.3.0. Now I want to upgrade
to NixOS 26.05 but that doesn't package wlroots 0.18 anymore
(which is needed by cage 0.2.0). Apparently Kodi can run standalone
without a display server, so let's just do that.
Diffstat (limited to 'nixos/profiles/common')
| -rw-r--r-- | nixos/profiles/common/nixpkgs/overlays.nix | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/nixos/profiles/common/nixpkgs/overlays.nix b/nixos/profiles/common/nixpkgs/overlays.nix index 09a2fdf..40f17a9 100644 --- a/nixos/profiles/common/nixpkgs/overlays.nix +++ b/nixos/profiles/common/nixpkgs/overlays.nix @@ -14,26 +14,6 @@ }); }) - # bug fixes - # pinning cage to v0.2.0 because kodi crashes with v0.2.1 - # (https://github.com/cage-kiosk/cage/issues/456) - (final: prev: { - cage = - (prev.cage.override { - wlroots_0_19 = prev.wlroots_0_18; - }).overrideAttrs - (oldAttrs: { - version = "0.2.0"; - src = final.fetchFromGitHub { - owner = "cage-kiosk"; - repo = "cage"; - tag = "v0.2.0"; - hash = "sha256-2SFtz62z0EF8cpFTC6wGi125MD4a5mkXqP/C+7fH+3g="; - }; - patches = []; - }); - }) - (final: prev: { sway-unwrapped = prev.sway-unwrapped.overrideAttrs (old: { patches = old.patches ++ [ |
