1
0
Fork 0

Shura: Remove workaround for fingerprint build bug

This commit is contained in:
Aires 2024-07-19 18:04:38 -04:00
parent b334fcc7d9
commit c76823483a
3 changed files with 6 additions and 23 deletions

View file

@ -248,15 +248,16 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1721221863, "lastModified": 1721413321,
"narHash": "sha256-kWPoGIiAG6gYBukAQRTeG9U5eFmdSqQeeAiv/nydzfE=", "narHash": "sha256-0GdiQScDceUrVGbxYpV819LHesK3szHOhJ09e6sgES4=",
"owner": "8bitbuddhist", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "13dee7858df0a2fb963b25157229b24188fc94e6", "rev": "ab165a8a6cd12781d76fe9cbccb9e975d0fb634f",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "8bitbuddhist", "owner": "NixOS",
"ref": "master",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"type": "github" "type": "github"
} }

View file

@ -33,10 +33,6 @@ in
system.stateVersion = stateVersion; system.stateVersion = stateVersion;
networking.hostName = hostName; 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 = { aux.system = {
apps = { apps = {
development.enable = true; development.enable = true;

View file

@ -33,19 +33,5 @@ in
# Add Bluetooth LE audio support # Add Bluetooth LE audio support
environment.systemPackages = with pkgs; [ liblc3 ]; 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";
};
};
}; };
} }