nixos-config/machines/xps/configuration.nix

16 lines
243 B
Nix
Raw Permalink Normal View History

2024-07-12 18:49:18 +00:00
{ pkgs, ... }:
2024-01-12 22:31:01 +00:00
{
networking.hostName = "xps";
boot.loader.grub.enableCryptodisk = true;
2024-07-12 18:49:18 +00:00
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
# battery level reporting
settings.General.Experimental = true;
};
2024-01-12 22:31:01 +00:00
}