all repos — nixfiles @ 5d61d9068a4897cce320f92ec31bd823f021378b

System and user configuration, managed by nix and home-manager

Add system configuration for marvin (x250)
Alan Pearce alan@alanpearce.eu
Sat, 09 Sep 2017 19:34:04 +0200
commit

5d61d9068a4897cce320f92ec31bd823f021378b

parent

9a3f32686b6da2e86d55fa986fac935128b37bc1

2 files changed, 74 insertions(+), 0 deletions(-)

jump to
A marvin.nix
@@ -0,0 +1,43 @@+{ config, pkgs, ... }:
+
+{ imports = [
+    ./hardware-configuration.nix
+    ./modules/systemd-boot.nix
+    ./modules/laptop.nix
+    ./modules/thinkpad.nix
+    ./modules/audio.nix
+    ./modules/adb.nix
+    ./modules/syncthing.nix
+    ./modules/nitrokey.nix
+    ./modules/shell.nix
+    ./modules/dotfiles.nix
+    ./modules/berlin.nix
+    ./modules/colemak.nix
+    ./modules/trackball.nix
+    ./modules/xserver.nix
+    ./modules/british-english.nix
+    ./modules/bare-metal.nix
+    ./modules/intel-gpu.nix
+    ./modules/x250.nix
+    ./modules/user.nix
+    ./modules/user-interface.nix
+    ./modules/dev.nix
+    ./modules/javascript.nix
+    ./modules/accounting.nix
+    ./modules/passwords.nix
+    ./modules/network-manager.nix
+    ./modules/nix.nix
+    ./modules/i3.nix
+  ];
+
+  environment.systemPackages = with pkgs; [
+    chromium
+  ];
+
+  networking = {
+    hostName = "marvin";
+    domain = "alanpearce.eu";
+  };
+
+  system.stateVersion = "17.03";
+}
A modules/x250.nix
@@ -0,0 +1,31 @@+{ config, pkgs, ... }:
+
+{ boot.extraModulePackages = with config.boot.kernelPackages; [
+    acpi_call
+  ];
+
+  hardware.firmware = with pkgs; [
+    firmwareLinuxNonfree
+  ];
+
+  services.xserver.monitorSection = ''
+    DisplaySize 277 156
+  '';
+
+  services.tlp.extraConfig = ''
+    # Newer Thinkpads have a battery firmware
+    # it conflicts with TLP if stop thresholds are set
+    START_CHARGE_THRESH_BAT0=70
+    # STOP_CHARGE_THRESH_BAT0=80
+    START_CHARGE_THRESH_BAT1=70
+    # STOP_CHARGE_THRESH_BAT1=80
+
+    DISK_APM_LEVEL_ON_AC="254 254"
+    DISK_APM_LEVEL_ON_BAT="128 128"
+
+    # One or both of these lines stops disk corruption
+    # when re-attaching to AC whilst on.
+    SATA_LINKPWR_ON_BAT=medium_power
+    SATA_LINKPWR_BLACKLIST="host1"
+  '';
+}