setup bluetooth
This commit is contained in:
parent
76fb213492
commit
447d5c06b4
3 changed files with 16 additions and 2 deletions
2
home.nix
2
home.nix
|
@ -23,6 +23,7 @@
|
|||
_1password-gui
|
||||
atkinson-hyperlegible
|
||||
alacritty
|
||||
blueman
|
||||
brightnessctl
|
||||
curl
|
||||
darktable
|
||||
|
@ -43,6 +44,7 @@
|
|||
mpv
|
||||
morgen
|
||||
obsidian
|
||||
pamixer
|
||||
pavucontrol
|
||||
powertop
|
||||
qutebrowser
|
||||
|
|
|
@ -49,6 +49,17 @@
|
|||
# networking.interfaces.wlp4s0.useDHCP = lib.mkDefault true;
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
hardware.i2c.enable = true;
|
||||
hardware = {
|
||||
cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
i2c.enable = true;
|
||||
bluetooth = {
|
||||
enable = true;
|
||||
powerOnBoot = true;
|
||||
settings = {
|
||||
General = {
|
||||
Enable = "Source,Sink,Media,Socket";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -50,6 +50,7 @@
|
|||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
wireplumber.enable = true;
|
||||
# If you want to use JACK applications, uncomment this
|
||||
# jack.enable = true;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue