Create more hardware modules
Alan Pearce alan@alanpearce.eu
Sat, 09 Sep 2017 15:13:50 +0200
4 files changed, 29 insertions(+), 0 deletions(-)
A modules/bare-metal.nix
@@ -0,0 +1,13 @@+{ config, pkgs, ... }: + +{ environment.systemPackages = with pkgs; [ + fuse_exfat + cryptsetup + dmidecode + hdparm + pciutils + usbutils + ]; + + boot.kernelPackages = pkgs.linuxPackages_4_12; +}
A modules/intel-gpu.nix
@@ -0,0 +1,6 @@+{ config, pkgs, ... }: + +{ hardware.opengl.extraPackages = with pkgs; [ + vaapiIntel + ]; +}
A modules/t470s.nix
@@ -0,0 +1,7 @@+{ config, pkgs, ... }: + +{ hardware.usbWwan.enable = true; + hardware.firmware = with pkgs; [ + firmwareLinuxNonfree + ]; +}
M satoshipad.nix → satoshipad.nix
@@ -18,6 +18,9 @@ ./modules/colemak.nix ./modules/trackball.nix ./modules/xserver.nix ./modules/british-english.nix + ./modules/bare-metal.nix + ./modules/intel-gpu.nix + ./modules/t470s.nix ]; networking.hostName = "satoshipad";