diff --git a/configuration.nix b/configuration.nix index 545344c..2355c06 100644 --- a/configuration.nix +++ b/configuration.nix @@ -51,7 +51,7 @@ mpv optipng pavucontrol - qutebrowser + qutebrowserWE xclip zathura ]; @@ -66,8 +66,8 @@ }; trackpoint.enable = true; opengl.extraPackages = with pkgs; [ # These are imported by ocl-icd - beignet # intel gpu intel-ocl # intel cpu + #beignet # intel gpu ]; }; @@ -326,6 +326,9 @@ nixpkgs.overlays = [ (self: super: { st = super.callPackage ./pkgs/st.nix {}; cups-filters = super.callPackage /home/eeva/pkgs/cups-filters {}; + qutebrowserWE = pkgs.qutebrowser.overrideAttrs (oldAttrs: rec { + withWebEngineDefault = true; + }); }) ]; diff --git a/pkgs/st.nix b/pkgs/st.nix index 73ec18c..6073891 100644 --- a/pkgs/st.nix +++ b/pkgs/st.nix @@ -4,10 +4,10 @@ with stdenv.lib; let patches' = builtins.map fetchurl [ - { url = "http://st.suckless.org/patches/st-no_bold_colors-20170623-b331da5.diff"; + { url = "http://st.suckless.org/patches/solarized/st-no_bold_colors-20170623-b331da5.diff"; sha256 = "71e1211189d9e11da93ee49388379c5f8469fcd3e1f48bb4d791ddaf161f5845"; } - { url = "http://st.suckless.org/patches/st-solarized-both-20170626-b331da5.diff"; + { url = "http://st.suckless.org/patches/solarized/st-solarized-both-20170626-b331da5.diff"; sha256 = "d1f168d225763680c6dc6e9a426b8bb56ff45967ffd0ea79f56b7af42c1141d9"; } ];