From 345cfad34f20995593facd1e4dfc9238a6baca65 Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Mon, 5 Aug 2024 23:09:47 +0530 Subject: [PATCH] feat: Misc changes to firefox --- common/firefox.nix | 1 + common/gui.nix | 1 + nixos/ryu.nix | 2 ++ 3 files changed, 4 insertions(+) diff --git a/common/firefox.nix b/common/firefox.nix index bbeaa762..c461916e 100644 --- a/common/firefox.nix +++ b/common/firefox.nix @@ -14,6 +14,7 @@ @import url(${pkgs.csshacks}/chrome/toolbars_below_content.css); @import url(${pkgs.csshacks}/chrome/scrollable_menupopups.css); @import url(${pkgs.csshacks}/chrome/linux_gtk_window_control_patch.css); + @import url(${pkgs.csshacks}/chrome/window_control_placeholder_support.css); ''; extensions = with pkgs.nur.repos.rycee.firefox-addons; [ privacy-badger diff --git a/common/gui.nix b/common/gui.nix index 2fb72995..09805813 100644 --- a/common/gui.nix +++ b/common/gui.nix @@ -29,6 +29,7 @@ lib.attrsets.optionalAttrs device.hasGui { neovide ] ++ lib.optionals device.isLinux [ + slack (mpv-unwrapped.wrapper {mpv = mpv-unwrapped.override {sixelSupport = true;};}) via webcord-vencord diff --git a/nixos/ryu.nix b/nixos/ryu.nix index 0965643f..b1ab13ba 100644 --- a/nixos/ryu.nix +++ b/nixos/ryu.nix @@ -5,6 +5,7 @@ config, lib, modulesPath, + pkgs, ... }: { imports = [(modulesPath + "/installer/scan/not-detected.nix")]; @@ -23,6 +24,7 @@ enable = true; enable32Bit = true; }; + hardware.opengl.extraPackages = [pkgs.intel-compute-runtime]; virtualisation.libvirtd.enable = true; users.extraUsers.servius.extraGroups = ["libvirtd"];