diff options
Diffstat (limited to 'modules/bare-metal.nix')
-rw-r--r-- | modules/bare-metal.nix | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/modules/bare-metal.nix b/modules/bare-metal.nix deleted file mode 100644 index b5e0fc7..0000000 --- a/modules/bare-metal.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ 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" ]; -} |