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

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

  boot.kernelPackages = pkgs.linuxPackages_4_12;

  boot.tmpOnTmpfs = true;

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