nixos-surface-config/homeManagerModules/gui/qutebrowser.nix
Rohan Deshpande b0462a90af first commit
2024-09-08 20:27:05 -04:00

16 lines
349 B
Nix

{config, pkgs, ...}: {
programs.qutebrowser = {
enable = true;
quickmarks = {
nixpkgs = "https://search.nixos.org/packages";
home-manager = "https://nix-community.github.io/home-manager/options.xhtml";
};
settings = {
colors = {
webpage.preferred_color_scheme = "dark";
};
content.blocking.method = "adblock";
};
};
}