This commit is contained in:
Daniel Flanagan 2024-08-30 13:02:20 -05:00
parent 411be6cac0
commit 2ad87cfe68
2 changed files with 12 additions and 0 deletions

View file

@ -342,6 +342,7 @@
hardware.nixosModules.common-pc-ssd
common
gaming
graphical-workstation
./nixos/htpc.nix

View file

@ -27,6 +27,17 @@
swapDevices = [];
hardware.bluetooth = {
enable = true;
# package = pkgs.bluez;
settings = {
General = {
AutoConnect = true;
MultiProfile = "multiple";
};
};
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}