diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-02-24 12:08:53 -0500 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-02-24 12:08:53 -0500 |
| commit | c867dd3ea21816e69de08088385d0d9246433765 (patch) | |
| tree | c8f0c6e3d81d758e6b77fdbdc7875daa436eac61 /modules/qutebrowser | |
| parent | 1ae82800c18ee751fc6f274c19fff9fc2fd84d47 (diff) | |
| download | home-c867dd3ea21816e69de08088385d0d9246433765.tar.gz | |
fixed nixGL wrapper
Diffstat (limited to 'modules/qutebrowser')
| -rw-r--r-- | modules/qutebrowser/default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/qutebrowser/default.nix b/modules/qutebrowser/default.nix new file mode 100644 index 0000000..283ea80 --- /dev/null +++ b/modules/qutebrowser/default.nix @@ -0,0 +1,13 @@ +{ config, lib, pkgs, inputs, ... }: +let + cfg = config.modules.qutebrowser; +in +{ + config = { + programs.qutebrowser = { + enable = true; + package = config.lib.nixGL.wrap pkgs.qutebrowser; + loadAutoconfig = true; + }; + }; +} |