mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
29 lines
673 B
Nix
29 lines
673 B
Nix
_: {
|
|
flake.homeModules.vivify = {pkgs-unstable, ...}: {
|
|
home.file.".config/vivify/config.json" = {
|
|
enable = true;
|
|
text = ''
|
|
{
|
|
"browserOptions": {
|
|
"name": "qutebrowser",
|
|
"arguments": ["-T"]
|
|
}
|
|
}'';
|
|
};
|
|
home.packages = [
|
|
pkgs-unstable.vivify
|
|
];
|
|
programs.qutebrowser = {
|
|
enable = true;
|
|
settings = {
|
|
auto_save.session = false;
|
|
changelog_after_upgrade = "never";
|
|
content.cookies.accept = "never";
|
|
};
|
|
extraConfig = ''
|
|
config.bind('<Ctrl-L>', 'yank url ;; message-info "URL copied"')
|
|
'';
|
|
};
|
|
};
|
|
}
|