diff --git a/flake.nix b/flake.nix index 901dbfd..bec61c4 100644 --- a/flake.nix +++ b/flake.nix @@ -342,6 +342,7 @@ hardware.nixosModules.common-pc-ssd common + gaming graphical-workstation ./nixos/htpc.nix diff --git a/nixos/htpc.nix b/nixos/htpc.nix index b0d8072..e07eaf1 100644 --- a/nixos/htpc.nix +++ b/nixos/htpc.nix @@ -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; }