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

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

  boot.kernelPackages = pkgs.linuxPackages_4_12;

  fileSystems."/".options = [ "noatime" "nodiratime" ];
  fileSystems."/home".options = [ "noatime" "nodiratime" ];
}