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 = [ ];
|
||||
});
|
||||
|
||||
# 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 {
|
||||
home.packages = [
|
||||
pkgs.anki-bin
|
||||
pkgs.unstable.anki
|
||||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
|
|
Loading…
Reference in a new issue