Compare commits

..

No commits in common. "e07ff010bc8716d6f36aecfbad747f375d6fdb7d" and "82e5faaeb84ab3a382c989c7780b55f8f2911b8a" have entirely different histories.

2 changed files with 5 additions and 27 deletions

View file

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

View file

@ -1,12 +0,0 @@
{ 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={}"}
'';
};
}