This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-config/machines/xps/configuration.nix

16 lines
243 B
Nix

{ pkgs, ... }:
{
networking.hostName = "xps";
boot.loader.grub.enableCryptodisk = true;
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
# battery level reporting
settings.General.Experimental = true;
};
}