summary refs log tree commit diff stats
path: root/modules/bare-metal.nix
blob: 04046b1ba011b34da014a8b68ce11ebfe0975716 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ... }:

{ environment.systemPackages = with pkgs; [
    fuse_exfat
    cryptsetup
    dmidecode
    hdparm
    pciutils
    usbutils
  ];

  boot.kernelPackages = pkgs.linuxPackages_4_12;
}