add nixopts search engine and fix bluetooth
This commit is contained in:
parent
9f20f5c1c6
commit
f466c4e3dd
2 changed files with 10 additions and 2 deletions
|
@ -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: *
|
||||||
|
|
|
@ -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.
|
||||||
|
|
Loading…
Reference in a new issue