Compare commits
3 commits
82e5faaeb8
...
e07ff010bc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e07ff010bc | ||
|
|
f960fcc43a | ||
|
|
d91cd33c82 |
|
|
@ -15,8 +15,9 @@ 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";
|
||||||
|
|
@ -47,9 +48,12 @@ rec {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Configure xdg-desktop-portal (for file picker, etc.)
|
# Configure default apps
|
||||||
# xdg.portal = {
|
# xdg.mimeApps = {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
|
# defaultApplications = {
|
||||||
|
# "application/pdf" = "org.pwmt.zathura.desktop";
|
||||||
|
# };
|
||||||
# };
|
# };
|
||||||
|
|
||||||
# Install packages
|
# Install packages
|
||||||
|
|
@ -127,9 +131,15 @@ 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
|
||||||
[ kakmerge qgo gnugo hunspell hunspellDicts.fr-any hunspellDicts.fr-moderne hunspellDicts.fr-classique ] ++ # Temp
|
[ keyutils ] ++ # Temp
|
||||||
[ ];
|
[ ];
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
|
||||||
12
snippets/qutebrowser.nix
Normal file
12
snippets/qutebrowser.nix
Normal 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={}"}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue