2017-12-07 16:33:08 +00:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
dummy_firmware = pkgs.writeTextFile {
|
|
|
|
name = "brcmfmac4356-pcie.txt";
|
|
|
|
text = builtins.readFile ./brcmfmac4356-pcie.txt;
|
|
|
|
destination = "/lib/firmware/brcm/brcmfmac4356-pcie.txt";
|
|
|
|
};
|
|
|
|
in {
|
2017-12-11 19:24:24 +00:00
|
|
|
#imports = [ <nixpkgs/nixos/modules/installer/scan/not-detected.nix> ];
|
2017-12-07 16:33:08 +00:00
|
|
|
hardware.firmware = [ dummy_firmware ];
|
2017-12-11 19:24:24 +00:00
|
|
|
hardware.enableRedistributableFirmware = true;
|
2017-12-07 16:33:08 +00:00
|
|
|
|
2017-12-11 19:24:24 +00:00
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "usbhid" "usb_storage" "sd_mod" "sdhci_acpi" "sdhci_pci" ];
|
2017-12-07 16:33:08 +00:00
|
|
|
boot.kernelPackages = pkgs.linuxPackages_4_14;
|
|
|
|
boot.kernelParams = [
|
|
|
|
"fbcon=rotate:1"
|
|
|
|
];
|
|
|
|
services.xserver.displayManager.sessionCommands = ''
|
|
|
|
(sleep 2 && ${pkgs.xorg.xrandr}/bin/xrandr --output DSI1 --rotate right)
|
2017-12-11 19:24:24 +00:00
|
|
|
(sleep 2 && ${pkgs.xorg.xinput}/bin/xinput set-prop 'Goodix Capacitive TouchScreen' 'Coordinate Transformation Matrix' 0 1 0 -1 0 1 0 0 1)
|
2017-12-07 16:33:08 +00:00
|
|
|
'';
|
2017-12-11 19:24:24 +00:00
|
|
|
services.xserver.dpi = 200;
|
|
|
|
fonts.fontconfig.dpi = 200;
|
|
|
|
lass.fonts.regular = "xft:Hack-Regular:pixelsize=22,xft:Symbola";
|
|
|
|
lass.fonts.bold = "xft:Hack-Bold:pixelsize=22,xft:Symbola";
|
|
|
|
lass.fonts.italic = "xft:Hack-RegularOblique:pixelsize=22,xft:Symbol";
|
2017-12-07 16:33:08 +00:00
|
|
|
}
|