diff options
| author | anand <anand.panchdhari@gmail.com> | 2026-02-03 17:31:26 +0530 |
|---|---|---|
| committer | anand <anand.panchdhari@gmail.com> | 2026-02-03 17:31:26 +0530 |
| commit | 5837cac44aec2e5f5e3c033ecc6dac21cb794058 (patch) | |
| tree | 21022276c40cf6de6b5184b71364e514e831805e /configuration.nix | |
| parent | 783b0263bf6a999b6a02a3459a771b88263f2af6 (diff) | |
bluetooth, added chrome and removed opacity changes in hyprland
Diffstat (limited to 'configuration.nix')
| -rw-r--r-- | configuration.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index 5b6a82e..37bdd8b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -16,6 +16,28 @@ boot.kernelPackages = pkgs.linuxPackages_latest; + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + settings = { + General = { + # Shows battery charge of connected devices on supported + # Bluetooth adapters. Defaults to 'false'. + Experimental = true; + # When enabled other devices can connect faster to us, however + # the tradeoff is increased power consumption. Defaults to + # 'false'. + FastConnectable = true; + }; + Policy = { + # Enable all controllers when they are found. This includes + # adapters present on start as well as adapters that are plugged + # in later on. Defaults to 'true'. + AutoEnable = true; + }; + }; + }; + networking.hostName = "anand-mini"; networking.extraHosts = '' 192.168.1.26 homelab @@ -51,6 +73,7 @@ nixpkgs.config.allowUnfree = true; + services.blueman.enable = true; services.logind.settings.Login = { HandlePowerKey = "ignore"; LidSwitchIgnoreInhibited = "no"; |
