bluetooth still not working but at least I am tyding up the config
This commit is contained in:
parent
b578121eeb
commit
adf5a952ba
6 changed files with 51 additions and 41 deletions
|
@ -14,6 +14,10 @@ in {
|
|||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
libsForQt5.bluez-qt
|
||||
];
|
||||
|
||||
hardware.bluetooth = {
|
||||
enable = true;
|
||||
powerOnBoot = true;
|
||||
|
@ -25,6 +29,12 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
fileSystems."/var/lib/bluetooth" = {
|
||||
device = "/persist/var/lib/bluetooth";
|
||||
options = ["bind" "noauto" "x-systemd.automount"];
|
||||
noCheck = true;
|
||||
};
|
||||
|
||||
# https://github.com/NixOS/nixpkgs/issues/170573
|
||||
};
|
||||
}
|
||||
|
|
|
@ -17,6 +17,8 @@ in {
|
|||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
|
||||
i18n.extraLocaleSettings = {
|
||||
LANG = "en_US.UTF-8";
|
||||
LC_ALL = "en_US.UTF-8";
|
||||
LC_ADDRESS = "de_DE.UTF-8";
|
||||
LC_IDENTIFICATION = "de_DE.UTF-8";
|
||||
LC_MEASUREMENT = "de_DE.UTF-8";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue