1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-05 21:03:27 +02:00
home-manager/tests/modules/programs/qutebrowser/greasemonkey.nix
sisyphushappy 3433206e51
qutebrowser: add greasemonkey userscript option
Co-authored-by: Ivar Scholten <ivar.scholten@protonmail.com>
2023-10-18 22:56:15 +02:00

35 lines
706 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
greasemonkeyScript = pkgs.writeText "qutebrowser-greasemonkey.js" ''
// ==UserScript==
// @name foo
// @namespace foo
// @match https://example.com/*
// @grant none
// ==/UserScript==
'';
in {
programs.qutebrowser = {
enable = true;
greasemonkey = [ greasemonkeyScript ];
};
test.stubs.qutebrowser = { };
nmt.script = let
scriptDir = if pkgs.stdenv.hostPlatform.isDarwin then
".qutebrowser/greasemonkey"
else
".config/qutebrowser/greasemonkey";
in ''
assertFileContent \
home-files/${scriptDir}/qutebrowser-greasemonkey.js \
${greasemonkeyScript}
'';
}