mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-22 16:08:50 +01:00
updated chromium and video configs
This commit is contained in:
parent
6e3bc28d9a
commit
0b15336c4c
4 changed files with 32 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ inputs, ... }:
|
{ inputs, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
|
@ -17,6 +17,12 @@
|
||||||
isGraphical = true;
|
isGraphical = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
xsession.pointerCursor = {
|
||||||
|
name = "Bibata-Modern-Classic";
|
||||||
|
package = pkgs.bibata-cursors;
|
||||||
|
size = 128;
|
||||||
|
};
|
||||||
|
|
||||||
services.kdeconnect.enable = true;
|
services.kdeconnect.enable = true;
|
||||||
services.kdeconnect.indicator = true;
|
services.kdeconnect.indicator = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -35,5 +35,12 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
hardware.opengl = {
|
||||||
|
extraPackages = with pkgs; [
|
||||||
|
vaapiVdpau
|
||||||
|
libvdpau-va-gl
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
system.stateVersion = "23.05";
|
system.stateVersion = "23.05";
|
||||||
}
|
}
|
||||||
|
|
|
@ -95,11 +95,8 @@ with lib;
|
||||||
bottles
|
bottles
|
||||||
protontricks
|
protontricks
|
||||||
heroic
|
heroic
|
||||||
google-chrome
|
|
||||||
chromium
|
|
||||||
vscode
|
vscode
|
||||||
discord
|
discord
|
||||||
chromium
|
|
||||||
quickemu
|
quickemu
|
||||||
quickgui
|
quickgui
|
||||||
trilium-desktop
|
trilium-desktop
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ...}:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
chromium_extension = [
|
chromium_extension = [
|
||||||
|
@ -7,17 +7,33 @@ let
|
||||||
"dnhpnfgdlenaccegplpojghhmaamnnfp" # Augmented Steam
|
"dnhpnfgdlenaccegplpojghhmaamnnfp" # Augmented Steam
|
||||||
"mdjildafknihdffpkfmmpnpoiajfjnjd" # Consent-O-Matic
|
"mdjildafknihdffpkfmmpnpoiajfjnjd" # Consent-O-Matic
|
||||||
"eimadpbcbfnmbkopoojfekhnkhdbieeh" # Dark Reader
|
"eimadpbcbfnmbkopoojfekhnkhdbieeh" # Dark Reader
|
||||||
"ponfpcnoihfmfllpaingbgckeeldkhle" # Youtube Enhancer
|
"mnjggcdmjocbbbhaepdhchncahnbgone" # Sponsor Block
|
||||||
"epocinhmkcnjfjobnglchpbncndobblj" # Mastodon Gaze
|
"epocinhmkcnjfjobnglchpbncndobblj" # Mastodon Gaze
|
||||||
"blipmdconlkpinefehnmjammfjpmpbjk" # Lighthouse
|
"blipmdconlkpinefehnmjammfjpmpbjk" # Lighthouse
|
||||||
"ggijpepdpiehgbiknmfpfbhcalffjlbj" # Open in mpv
|
"ggijpepdpiehgbiknmfpfbhcalffjlbj" # Open in mpv
|
||||||
"cjpalhdlnbpafiamejdnhcphjbkeiagm" # ublock Origin
|
"cjpalhdlnbpafiamejdnhcphjbkeiagm" # ublock Origin
|
||||||
|
"gbmdgpbipfallnflgajpaliibnhdgobh" # JSON Viewer
|
||||||
|
"nhdogjmejiglipccpnnnanhbledajbpd" # Vue Devtools
|
||||||
|
"blipmdconlkpinefehnmjammfjpmpbjk" # Lighthouse
|
||||||
|
"fmkadmapgofadopljbjfkapdkoienihi" # React Devtools
|
||||||
|
"bmnlcjabgnpnenekpadlanbbkooimhnj" # Honey
|
||||||
|
"kbfnbcaeplbcioakkpcpgfkobkghlhen" # Grammarly
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
programs.chromium = {
|
programs.chromium = {
|
||||||
enable = true;
|
enable = true;
|
||||||
dictionaries = with pkgs.hunspellDictsChromium; [ en_US de_DE ];
|
dictionaries = with pkgs.hunspellDictsChromium; [ en_US de_DE ];
|
||||||
|
commandLineArgs = [
|
||||||
|
"--ignore-gpu-blocklist"
|
||||||
|
"--enable-gpu-rasterization"
|
||||||
|
"--enable-zero-copy"
|
||||||
|
"--enable-features=VaapiVideoDecoder,VaapiVideoEncoder,WebRTCPipeWireCapturer"
|
||||||
|
"--disable-features=UseChromeOSDirectVideoDecoder"
|
||||||
|
"--use-vulkan"
|
||||||
|
"--ozone-platform-hint=auto"
|
||||||
|
"--enable-hardware-overlays"
|
||||||
|
];
|
||||||
extensions = map
|
extensions = map
|
||||||
(eid: {
|
(eid: {
|
||||||
id = eid;
|
id = eid;
|
||||||
|
|
Loading…
Reference in a new issue