add nixopts search engine and fix bluetooth

This commit is contained in:
Sakooooo 2023-07-05 17:46:16 +03:00
parent 9f20f5c1c6
commit f466c4e3dd
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 10 additions and 2 deletions

View file

@ -102,7 +102,8 @@ config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}; rv:90.0) Gecko
# SEarch Engine # SEarch Engine
c.url.searchengines = { c.url.searchengines = {
'DEFAULT': 'https://duckduckgo.com/?ia=web&q={}', 'DEFAULT': 'https://duckduckgo.com/?ia=web&q={}',
'nixpkgs': 'https://search.nixos.org/packages?query={}' 'nixpkgs': 'https://search.nixos.org/packages?query={}',
'nixopts': 'https://search.nixos.org/options?query={}'
} }
# User agent to send. The following placeholders are defined: * # User agent to send. The following placeholders are defined: *

View file

@ -117,7 +117,14 @@
}; };
# Bluetooth # Bluetooth
hardware.bluetooth.enable = true; hardware.bluetooth = {
enable = true;
settings = {
General = {
ControllerMode = "bredr";
};
};
};
services.blueman.enable = true; services.blueman.enable = true;
# Enable CUPS to print documents. # Enable CUPS to print documents.