mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 18:41:34 +01:00
Revert "Reenable gpu for electron apps"
This reverts commit f64087901c.
This commit is contained in:
parent
a07d57f4c7
commit
45f1697f43
5 changed files with 36 additions and 4 deletions
8
wrappers/marktext.nix
Normal file
8
wrappers/marktext.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{ assembleWrapper, moduleArgs, ... }:
|
||||
let
|
||||
inherit (moduleArgs) pkgs;
|
||||
in
|
||||
assembleWrapper {
|
||||
basePackage = pkgs.marktext;
|
||||
flags = [ "--disable-gpu" ];
|
||||
}
|
||||
8
wrappers/obsidian.nix
Normal file
8
wrappers/obsidian.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{ assembleWrapper, moduleArgs, ... }:
|
||||
let
|
||||
inherit (moduleArgs) pkgs;
|
||||
in
|
||||
assembleWrapper {
|
||||
basePackage = pkgs.obsidian;
|
||||
flags = [ "--disable-gpu" ];
|
||||
}
|
||||
8
wrappers/spotify.nix
Normal file
8
wrappers/spotify.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{ assembleWrapper, moduleArgs, ... }:
|
||||
let
|
||||
inherit (moduleArgs) pkgs;
|
||||
in
|
||||
assembleWrapper {
|
||||
basePackage = pkgs.spotify;
|
||||
flags = [ "--disable-gpu" ];
|
||||
}
|
||||
8
wrappers/webcord.nix
Normal file
8
wrappers/webcord.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{ assembleWrapper, moduleArgs, ... }:
|
||||
let
|
||||
inherit (moduleArgs) pkgs;
|
||||
in
|
||||
assembleWrapper {
|
||||
basePackage = pkgs.webcord;
|
||||
flags = [ "--disable-gpu" ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue