Compare commits
2 commits
a9b04bd311
...
781171768c
Author | SHA1 | Date | |
---|---|---|---|
Aires | 781171768c | ||
Aires | c76823483a |
|
@ -248,11 +248,11 @@
|
|||
},
|
||||
"nixos-hardware": {
|
||||
"locked": {
|
||||
"lastModified": 1721331912,
|
||||
"narHash": "sha256-h2yaU+QEU4pHxMySHPIsRV2T/pihDHnrXBca8BY6xgc=",
|
||||
"lastModified": 1721413321,
|
||||
"narHash": "sha256-0GdiQScDceUrVGbxYpV819LHesK3szHOhJ09e6sgES4=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixos-hardware",
|
||||
"rev": "bb90787ea034c8b9035dfcfc9b4dc23898d414be",
|
||||
"rev": "ab165a8a6cd12781d76fe9cbccb9e975d0fb634f",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -33,10 +33,6 @@ in
|
|||
system.stateVersion = stateVersion;
|
||||
networking.hostName = hostName;
|
||||
|
||||
# FIXME: disabling fingerprints due to fprintd-tod build error
|
||||
# Fix queued and coming: https://github.com/NixOS/nixpkgs/pull/327289
|
||||
services.fprintd.enable = lib.mkForce false;
|
||||
|
||||
aux.system = {
|
||||
apps = {
|
||||
development.enable = true;
|
||||
|
|
|
@ -33,19 +33,5 @@ in
|
|||
|
||||
# Add Bluetooth LE audio support
|
||||
environment.systemPackages = with pkgs; [ liblc3 ];
|
||||
|
||||
# FIXME: Create systemd service to manually start the adapter on boot.
|
||||
# This is a workaround for hardware.bluetooth.powerOnBoot not working as expected.
|
||||
systemd.services.startBluetooth = {
|
||||
description = "Manually starts the Bluetooth service on boot";
|
||||
after = [ "bluetooth.target" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
serviceConfig = {
|
||||
type = "simple";
|
||||
ExecStart = "${pkgs.bluez}/bin/bluetoothctl -- power on";
|
||||
Restart = "always";
|
||||
RestartSec = "5s";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue