overlays: removed tabolet overlay due to outmoding by nixos/nixpkgs##361341
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run

This commit is contained in:
Aly Raffauf 2024-12-20 21:43:36 -05:00
parent b3200ec381
commit ff2bad707a
2 changed files with 1 additions and 24 deletions

View file

@ -221,10 +221,7 @@
}
);
overlays = {
tablet = import ./overlays/tablet.nix;
default = import ./overlays/default.nix {inherit self;};
};
overlays.default = import ./overlays/default.nix {inherit self;};
packages = forAllLinuxSystems ({pkgs}: rec {
default = clean-install;

View file

@ -1,20 +0,0 @@
# Text input fixes for electron apps.
final: prev: {
brave = prev.brave.override {commandLineArgs = "--gtk-version=4 --enable-wayland-ime";};
obsidian = prev.obsidian.overrideAttrs (old: {
installPhase =
builtins.replaceStrings ["--ozone-platform=wayland"]
["--ozone-platform=wayland --enable-wayland-ime"]
old.installPhase;
});
vscodium = prev.vscodium.override {commandLineArgs = "--enable-wayland-ime";};
webcord = prev.webcord.overrideAttrs (old: {
installPhase =
builtins.replaceStrings ["--ozone-platform-hint=auto"]
["--ozone-platform-hint=auto --enable-wayland-ime"]
old.installPhase;
});
}