nixos-hardware/dell/xps/15-7590/default.nix

15 lines
287 B
Nix
Raw Normal View History

2019-07-18 15:19:31 -04:00
{ lib, ... }:
{
imports = [
../../../common/cpu/intel
../../../common/pc/laptop
];
# TODO: boot loader
boot.loader.systemd-boot.enable = lib.mkDefault true;
boot.kernelPackages = pkgs.linuxPackages_5_1;
boot.loader.efi.canTouchEfiVariables = lib.mkDefault true;
}