From 771a7e045c9a7eeac304ca9e9c9f6ed0498f31f8 Mon Sep 17 00:00:00 2001 From: Dmitri Date: Sat, 4 Oct 2025 13:49:01 +0200 Subject: [PATCH] flake --- configuration.nix | 13 +++++++++++-- flake.nix | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) 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 = [