diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2026-01-29 08:58:12 -0700 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2026-01-29 08:58:12 -0700 |
| commit | 9cf0d52e2771ec9cd080f482a316e67842bad437 (patch) | |
| tree | 077fe9142421c4417ac0f12bc2149f42a793ba0e | |
| parent | fd6293979823e91cba5c147b35f5bf0c94b5c792 (diff) | |
if new cage doesn't work try old cage
| -rw-r--r-- | flake.nix | 3 | ||||
| -rw-r--r-- | machines/picast/default.nix | 4 |
2 files changed, 4 insertions, 3 deletions
@@ -4,6 +4,7 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; + nixpkgs-old.url = "github:nixos/nixpkgs/nixos-25.05"; home-manager = { url = "github:nix-community/home-manager/release-25.11"; @@ -285,7 +286,7 @@ }; picast = lib.nixosSystem { # anger at chromecast specialArgs = { - pkgs-unstable = import nixpkgs-unstable { + pkgs-old = import nixpkgs-old { system = "aarch64-linux"; config.allowUnfree = true; }; diff --git a/machines/picast/default.nix b/machines/picast/default.nix index 63ad21d..b860507 100644 --- a/machines/picast/default.nix +++ b/machines/picast/default.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page, on # https://search.nixos.org/options and in the NixOS manual (`nixos-help`). -{ config, lib, pkgs, pkgs-unstable, ... }: +{ config, lib, pkgs, pkgs-old, ... }: { imports = @@ -50,7 +50,7 @@ extraGroups = [ "video" ]; }; services.cage = { - package = pkgs-unstable.cage; + package = pkgs-old.cage; enable = true; user = "kodi"; program = "${pkgs.kodi-wayland.withPackages (kodiPkgs: with kodiPkgs; |
