diff --git a/machines/xps/configuration.nix b/machines/xps/configuration.nix index 05e01de..ca308ad 100644 --- a/machines/xps/configuration.nix +++ b/machines/xps/configuration.nix @@ -1,7 +1,15 @@ -{ config, pkgs, ... }: +{ pkgs, ... }: { networking.hostName = "xps"; boot.loader.grub.enableCryptodisk = true; + + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + + # battery level reporting + settings.General.Experimental = true; + }; }