diff --git a/configuration.nix b/configuration.nix index 2598cb1..4a0604f 100644 --- a/configuration.nix +++ b/configuration.nix @@ -14,7 +14,17 @@ # Enable networking networking.networkmanager.enable = true; - hardware.bluetooth.enable = true; + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + settings = { + General = { + ControllerMode = "dual"; + FastConnectable = true; + Experimental = true; + }; + }; + }; # Set your time zone. time.timeZone = "Europe/Rome"; @@ -100,7 +110,6 @@ adw-gtk3 xfce.thunar wluma - blueman wlsunset playerctl sway-contrib.grimshot diff --git a/flake.nix b/flake.nix index 68c5224..00121ae 100644 --- a/flake.nix +++ b/flake.nix @@ -7,7 +7,7 @@ }; }; - outputs = { self, nixpkgs, home-manager, ... }: { + outputs = { self, nixpkgs, home-manager, ... }@inputs: { nixosConfigurations.laptop = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [