2019-07-14 14:27:44 +00:00
|
|
|
{ pkgs, lib, ... }:
|
2019-07-11 14:09:14 +00:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./config.nix
|
2019-07-14 14:27:44 +00:00
|
|
|
<nixpkgs/nixos/modules/installer/scan/not-detected.nix>
|
2019-07-11 14:09:14 +00:00
|
|
|
];
|
2019-07-14 14:27:44 +00:00
|
|
|
|
|
|
|
boot.loader.grub = {
|
|
|
|
enable = true;
|
|
|
|
device = "/dev/sda";
|
|
|
|
efiSupport = true;
|
2020-01-11 19:40:38 +00:00
|
|
|
efiInstallAsRemovable = true;
|
2019-07-14 14:27:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
boot.blacklistedKernelModules = [
|
2019-10-14 13:07:33 +00:00
|
|
|
"sdhci_pci"
|
2019-07-14 14:27:44 +00:00
|
|
|
];
|
2019-08-27 14:56:19 +00:00
|
|
|
|
2019-07-14 14:27:44 +00:00
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "sd_mod" ];
|
|
|
|
boot.initrd.luks.devices.crypted.device = "/dev/sda3";
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
boot.kernelParams = [
|
|
|
|
"fbcon=rotate:1"
|
|
|
|
"boot.shell_on_fail"
|
|
|
|
];
|
|
|
|
|
2019-07-11 14:09:14 +00:00
|
|
|
fileSystems."/" = {
|
2020-01-11 19:40:38 +00:00
|
|
|
device = "/dev/disk/by-uuid/8efd0c22-f712-46bf-baad-1fbf19d9ec25";
|
|
|
|
fsType = "xfs";
|
2019-07-11 14:09:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
fileSystems."/boot" = {
|
2020-01-11 19:40:38 +00:00
|
|
|
device = "/dev/disk/by-uuid/7F23-DDB4";
|
2019-07-11 14:09:14 +00:00
|
|
|
fsType = "vfat";
|
|
|
|
};
|
|
|
|
|
2019-07-14 14:27:44 +00:00
|
|
|
swapDevices = [ ];
|
|
|
|
|
|
|
|
boot.extraModprobeConfig = ''
|
2019-10-14 13:08:32 +00:00
|
|
|
options zfs zfs_arc_max=107374182
|
2019-07-14 14:27:44 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
nix.maxJobs = lib.mkDefault 4;
|
|
|
|
|
|
|
|
networking.hostId = "9b0a74ac";
|
|
|
|
networking.networkmanager.enable = true;
|
2019-07-11 14:09:14 +00:00
|
|
|
|
2019-07-14 14:27:44 +00:00
|
|
|
hardware.opengl.enable = true;
|
2019-07-11 14:09:14 +00:00
|
|
|
|
2019-07-14 14:27:44 +00:00
|
|
|
services.tlp.enable = true;
|
|
|
|
services.tlp.extraConfig = ''
|
|
|
|
CPU_SCALING_GOVERNOR_ON_AC=ondemand
|
|
|
|
CPU_SCALING_GOVERNOR_ON_BAT=powersave
|
|
|
|
CPU_MIN_PERF_ON_AC=0
|
|
|
|
CPU_MAX_PERF_ON_AC=100
|
|
|
|
CPU_MIN_PERF_ON_BAT=0
|
|
|
|
CPU_MAX_PERF_ON_BAT=30
|
|
|
|
'';
|
|
|
|
|
|
|
|
services.logind.extraConfig = ''
|
|
|
|
HandlePowerKey=suspend
|
|
|
|
IdleAction=suspend
|
|
|
|
IdleActionSec=300
|
|
|
|
'';
|
|
|
|
|
2019-08-27 14:56:19 +00:00
|
|
|
services.xserver = {
|
|
|
|
videoDrivers = [ "intel" ];
|
|
|
|
displayManager.sessionCommands = ''
|
|
|
|
(sleep 2 && ${pkgs.xorg.xrandr}/bin/xrandr --output eDP1 --rotate right)
|
2019-10-14 13:09:41 +00:00
|
|
|
(sleep 2 && ${pkgs.xorg.xinput}/bin/xinput set-prop "pointer:Goodix Capacitive TouchScreen" --type=float "Coordinate Transformation Matrix" 0 1 0 -1 0 1 0 0 1)
|
2019-08-27 14:56:19 +00:00
|
|
|
'';
|
|
|
|
};
|
2019-07-11 14:09:14 +00:00
|
|
|
}
|