nixos-config: add live-usb-transcend
This commit is contained in:
parent
ceecf7b412
commit
68ca11e4db
6 changed files with 559 additions and 0 deletions
23
nixos-configuration/steveej-live-usb-transcend/boot.nix
Normal file
23
nixos-configuration/steveej-live-usb-transcend/boot.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
|
||||
# Bootloader, initrd and Kernel
|
||||
boot.loader.grub = {
|
||||
enable = true;
|
||||
enableCryptodisk = true;
|
||||
version = 2;
|
||||
};
|
||||
|
||||
# workaround to disable CPU wining
|
||||
# current CPU has 9 idle cstates.
|
||||
|
||||
# Workaround for nm-pptp to enforce module load
|
||||
boot.kernelModules = [
|
||||
"nf_conntrack_proto_gre"
|
||||
"nf_conntrack_pptp"
|
||||
];
|
||||
|
||||
boot.tmpOnTmpfs = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue