mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
35 lines
706 B
Nix
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}
|
||
|
'';
|
||
|
}
|