mirror of
https://github.com/librephoenix/nixos-config
synced 2025-10-19 01:54:02 +05:30
home manager uses global packages
This commit is contained in:
parent
9a50ad5a3f
commit
1b3b5e4b12
9 changed files with 64 additions and 72 deletions
22
modules/system/overlays/brave.nix
Normal file
22
modules/system/overlays/brave.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
config = {
|
||||
nixpkgs.config.overlays = [
|
||||
(self: super: {
|
||||
brave = super.brave.override {
|
||||
commandLineArgs = [
|
||||
"--password-store=gnome-libsecret"
|
||||
"--ignore-gpu-blocklist"
|
||||
"--enable-gpu-rasterization"
|
||||
"--enable-accelerated-video-decode"
|
||||
"--enable-quic"
|
||||
"--enable-zero-copy"
|
||||
"--enable-native-gpu-memory-buffers"
|
||||
"--num-raster-threads=4"
|
||||
];
|
||||
};
|
||||
})
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue