new device
This commit is contained in:
parent
a565033341
commit
5d101ab266
14 changed files with 292 additions and 17 deletions
14
system/dev/skydrive-lap/boot.nix
Normal file
14
system/dev/skydrive-lap/boot.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
|
||||
# Enable F keys in some wireless keyboard (Ex. neo65)
|
||||
boot.extraModprobeConfig = ''
|
||||
options hid_apple fnmode=2
|
||||
'';
|
||||
|
||||
boot.initrd.systemd.enable = true;
|
||||
boot.initrd.kernelModules = [ "i915" ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue