nixos-config/machines/xps/configuration.nix

16 lines
243 B
Nix
Raw Normal View History

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