*: add config

This commit is contained in:
steveej 2015-10-23 01:26:53 +02:00
commit 80c42c7e45
22 changed files with 3229 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }:
{
# Bootloader, initrd and Kernel
boot.loader.grub.enable = true;
boot.loader.grub.enableCryptodisk = true;
boot.loader.grub.version = 2;
# Workaround for nm-pptp
boot.kernelModules = [
"nf_conntrack_proto_gre"
"nf_conntrack_pptp"
];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.tmpOnTmpfs = true;
}