anki: Use native version
This currently still requires an override to work with wayland, though there is a nixpkgs PR to fix this.
This commit is contained in:
parent
dc4a2c27ec
commit
2a5e20cb36
|
@ -64,4 +64,9 @@ in
|
||||||
|
|
||||||
patches = [ ];
|
patches = [ ];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
# FIXME: Remove once PR 226426 lands
|
||||||
|
anki = prev.anki.overrideAttrs (o: rec {
|
||||||
|
buildInputs = o.buildInputs ++ (with prev; [ qt6.qtwayland ]);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
lib.mkIf nixosConfig.sbruder.gui.enable {
|
lib.mkIf nixosConfig.sbruder.gui.enable {
|
||||||
home.packages = [
|
home.packages = [
|
||||||
pkgs.anki-bin
|
pkgs.unstable.anki
|
||||||
];
|
];
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
|
|
Loading…
Reference in a new issue