Use nightly build of Jameica

as VoP is not available in a stable release yet.
This commit is contained in:
Jakob Lechner 2025-10-28 21:06:14 +01:00
parent e199dc603b
commit d139988fa9

View file

@ -1,6 +1,16 @@
{ nixosConfig, lib, pkgs, ... }:
lib.mkIf nixosConfig.jalr.gui.enable {
home.packages = with pkgs; [
jameica
home.packages = [
(
pkgs.jameica.overrideAttrs (_: {
version = "2.11.0-nightly";
src = pkgs.fetchFromGitHub {
owner = "willuhn";
repo = "jameica";
rev = "e51bffc0e42907cbd802a644ab52810e0a36fff8";
hash = "sha256-0KcT52dh/tJSX6q+uKkRybz33jKnYRTNDo1BftwJLAc=";
};
})
)
];
}