2015-08-11 19:00:22 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
2017-11-08 09:54:44 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
2015-08-02 21:12:38 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[ # Include the results of the hardware scan.
|
2017-07-15 17:01:02 +00:00
|
|
|
<stockholm/makefu>
|
2017-11-08 09:54:44 +00:00
|
|
|
<stockholm/makefu/2configs/main-laptop.nix>
|
|
|
|
<stockholm/makefu/2configs/tools/all.nix>
|
2017-07-15 17:01:02 +00:00
|
|
|
<stockholm/makefu/2configs/fs/sda-crypto-root.nix>
|
2015-08-07 10:53:38 +00:00
|
|
|
# hardware specifics are in here
|
2017-07-28 19:59:28 +00:00
|
|
|
# imports tp-x2x0.nix
|
2017-11-08 09:54:44 +00:00
|
|
|
# <stockholm/makefu/2configs/hw/tp-x200.nix>
|
2015-08-14 13:59:05 +00:00
|
|
|
|
2017-11-08 09:54:44 +00:00
|
|
|
# <stockholm/makefu/2configs/rad1o.nix>
|
2015-08-17 21:24:37 +00:00
|
|
|
|
2017-07-15 17:01:02 +00:00
|
|
|
<stockholm/makefu/2configs/zsh-user.nix>
|
|
|
|
<stockholm/makefu/2configs/exim-retiolum.nix>
|
|
|
|
<stockholm/makefu/2configs/tinc/retiolum.nix>
|
2015-08-02 21:12:38 +00:00
|
|
|
];
|
2015-08-05 13:11:52 +00:00
|
|
|
# not working in vm
|
2015-08-02 21:12:38 +00:00
|
|
|
krebs.build.host = config.krebs.hosts.tsp;
|
2017-11-08 09:54:44 +00:00
|
|
|
boot.initrd.luks.devices = [ { name = "luksroot"; device = "/dev/sda2"; allowDiscards=true; }];
|
|
|
|
boot.loader.grub.copyKernels = true;
|
2015-08-17 21:24:37 +00:00
|
|
|
|
2015-08-13 15:15:09 +00:00
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
|
|
25
|
|
|
|
];
|
|
|
|
|
2017-11-08 09:54:44 +00:00
|
|
|
# acer aspire
|
|
|
|
networking.wireless.enable = lib.mkDefault true;
|
|
|
|
|
2017-12-08 13:24:39 +00:00
|
|
|
services.xserver.synaptics.enable = true;
|
|
|
|
|
2017-11-08 09:54:44 +00:00
|
|
|
hardware.enableAllFirmware = true;
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
|
|
|
hardware.cpu.intel.updateMicrocode = true;
|
|
|
|
|
|
|
|
zramSwap.enable = true;
|
|
|
|
zramSwap.numDevices = 2;
|
|
|
|
|
|
|
|
services.tlp.enable = true;
|
|
|
|
services.tlp.extraConfig = ''
|
|
|
|
# BUG: http://linrunner.de/en/tlp/docs/tlp-faq.html#erratic-battery
|
|
|
|
START_CHARGE_THRESH_BAT0=67
|
|
|
|
STOP_CHARGE_THRESH_BAT0=100
|
|
|
|
|
|
|
|
|
|
|
|
CPU_SCALING_GOVERNOR_ON_AC=performance
|
|
|
|
CPU_SCALING_GOVERNOR_ON_BAT=ondemand
|
|
|
|
CPU_MIN_PERF_ON_AC=0
|
|
|
|
CPU_MAX_PERF_ON_AC=100
|
|
|
|
CPU_MIN_PERF_ON_BAT=0
|
|
|
|
CPU_MAX_PERF_ON_BAT=30
|
|
|
|
'';
|
|
|
|
|
|
|
|
powerManagement.resumeCommands = ''
|
|
|
|
${pkgs.rfkill}/bin/rfkill unblock all
|
|
|
|
'';
|
|
|
|
|
2015-08-02 21:12:38 +00:00
|
|
|
}
|