From 606e55421ed460a6aa6a7f5ab783bc8cbeb2f262 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Fri, 20 Dec 2024 21:44:21 -0500 Subject: [PATCH] overlays: removed tablet overlay due to outmoding by nixos/nixpkgs#361341 --- flake.nix | 5 +---- overlays/tablet.nix | 20 -------------------- 2 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 overlays/tablet.nix diff --git a/flake.nix b/flake.nix index ec32be6b..8acc45dd 100644 --- a/flake.nix +++ b/flake.nix @@ -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; diff --git a/overlays/tablet.nix b/overlays/tablet.nix deleted file mode 100644 index 45c00fb7..00000000 --- a/overlays/tablet.nix +++ /dev/null @@ -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; - }); -}