Compare commits

...

3 commits

Author SHA1 Message Date
vorboyvo e07ff010bc Installed qutebrowser and added keyutils. 2025-02-27 10:21:05 -05:00
vorboyvo f960fcc43a Added qutebrowser with initial config. 2025-02-27 10:20:50 -05:00
vorboyvo d91cd33c82 Moved packages and removed unneeded temp ones. 2025-02-26 21:21:56 -05:00
2 changed files with 27 additions and 5 deletions

View file

@ -15,8 +15,9 @@ rec {
../../snippets/sway.nix
../../snippets/waybar.nix
# ../../snippets/i3blocks.nix
../../snippets/firefox.nix
# ../../snippets/firefox.nix
../../snippets/thunderbird.nix
../../snippets/qutebrowser.nix
];
home.username = "alice";
@ -47,9 +48,12 @@ rec {
};
};
# Configure xdg-desktop-portal (for file picker, etc.)
# xdg.portal = {
# enable = true;
# Configure default apps
# xdg.mimeApps = {
# enable = true;
# defaultApplications = {
# "application/pdf" = "org.pwmt.zathura.desktop";
# };
# };
# Install packages
@ -127,9 +131,15 @@ rec {
openmoji-black
openmoji-color
] ++ # Fonts
[
hunspell
hunspellDicts.fr-any
hunspellDicts.fr-moderne
hunspellDicts.fr-classique
] ++ # Spell checking
# [ papirus-icon-theme ] ++ # Icons
# [ vanilla-dmz ] ++ # Cursor
[ kakmerge qgo gnugo hunspell hunspellDicts.fr-any hunspellDicts.fr-moderne hunspellDicts.fr-classique ] ++ # Temp
[ keyutils ] ++ # Temp
[ ];
programs.home-manager.enable = true;

12
snippets/qutebrowser.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
programs.qutebrowser = {
enable = true;
settings = {
tabs.tabs_are_windows = true;
};
extraConfig = ''
c.url.searchengines={"DEFAULT": "https://duckduckgo.com/?q={}", "np": "https://search.nixos.org/packages?type=packages&query={}", "no": "https://search.nixos.org/options?type=options&query={}", "hm": "https://home-manager-options.extranix.com?query={}"}
'';
};
}