ThinkPad T14 G2 AMD -> P14s G6 AMD

This commit is contained in:
Sergei Poljanski 2026-05-07 17:55:07 +03:00
commit 5fbe4e306f
Signed by: asxpi
GPG key ID: 4F8851660FA4121B
13 changed files with 226 additions and 62 deletions

View file

@ -12,11 +12,12 @@
# Enable networking
networking.networkmanager.enable = true;
# Quectel EM120R-GL WWAN Modem Support
# FCC unlock for Quectel EM120R-GL
# Quectel EM160R-GL WWAN Modem Support
# FCC unlock for Quectel EM160R-GL (USB ID 1eac:100d)
# Reuses the EM120R-GL (1eac:1001) script — same AT command across the family.
networking.modemmanager.fccUnlockScripts = [
{
id = "1eac:1001";
id = "1eac:100d";
path = "${pkgs.modemmanager}/share/ModemManager/fcc-unlock.available.d/1eac:1001";
}
];
@ -24,6 +25,15 @@
# Kernel modules for WWAN/MBIM modems
boot.kernelModules = [ "cdc_mbim" "qmi_wwan" "cdc_wdm" "mhi" ];
# MediaTek MT7925 Wi-Fi: disable PCIe ASPM.
# Why: under high throughput (>~50 Mbit/s sustained) the PCIe link enters L1
# power-saving mid-flow and the firmware queue stalls, causing TX to decay
# to zero and the driver to deauth (reason=3, locally_generated=1).
# Verified live by reloading mt7925e with disable_aspm=1.
boot.extraModprobeConfig = ''
options mt7925e disable_aspm=1
'';
# udev rules for WWAN devices
services.udev.extraRules = ''
KERNEL=="wwan*mbim*", MODE="0660", GROUP="networkmanager"
@ -97,8 +107,10 @@
};
};
# IVPN service
# IVPN service — installed but not auto-started at boot.
# Start manually: `sudo systemctl start ivpn-service`
services.ivpn.enable = true;
systemd.services.ivpn-service.wantedBy = lib.mkForce [ ];
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];

View file

@ -1,5 +1,5 @@
# System packages configuration
{ config, pkgs, lib, ... }:
{ config, pkgs, lib, inputs, ... }:
{
# Allow unfree packages
@ -64,6 +64,7 @@
# Desktop / GUI Apps
gnome-tweaks
obs-studio
inputs.anotherim.packages.${pkgs.system}.default
# Development
nodejs_20
@ -106,6 +107,7 @@
libmbim
libqmi
modemmanager
lpac # eSIM Local Profile Assistant
# Estonian ID / digital signature
qdigidoc
@ -123,5 +125,8 @@
ivpn-service
ivpn-ui
xray
# GNOME extensions
gnomeExtensions.tlp-profile-switcher
];
}

View file

@ -1,9 +1,31 @@
# Power management — ThinkPad T14 Gen 2 (AMD)
# Power management — ThinkPad P14s Gen 6 (AMD)
{ config, pkgs, lib, ... }:
{
# AMD P-State driver (active mode for full EPP control)
boot.kernelParams = [ "amd_pstate=active" ];
# resume_offset = first physical block of /var/swapfile (for hibernate from
# an ext4 swapfile on LUKS). Recompute if the swapfile is recreated:
# sudo filefrag -v /var/swapfile | awk 'NR==4{gsub(/\.\./,""); print $4}'
boot.kernelParams = [ "amd_pstate=active" "resume_offset=1769472" ];
# Hibernate / resume from encrypted swapfile on LUKS root.
# P14s G6 AMD has no S3 (Modern Standby only); this enables
# suspend-then-hibernate so long sleeps drain to disk.
boot.resumeDevice = "/dev/mapper/luks-71c97ce7-dd29-4b07-8d2a-8cc3985a65bd";
# systemd-logind: when lid closes / suspend pressed, suspend first;
# if still asleep after the delay, hibernate.
services.logind.settings.Login = {
HandleLidSwitch = "suspend-then-hibernate";
HandleSuspendKey = "suspend-then-hibernate";
IdleAction = "suspend-then-hibernate";
IdleActionSec = "30min";
};
# Switch to hibernate after this long in s2idle.
systemd.sleep.settings.Sleep = {
HibernateDelaySec = "45min";
};
# CPU frequency scaling
powerManagement.cpuFreqGovernor = "powersave";
@ -11,47 +33,93 @@
# Disable power-profiles-daemon (conflicts with TLP)
services.power-profiles-daemon.enable = false;
# TLP — main power management daemon
services.tlp = {
enable = true;
settings = {
# CPU
CPU_SCALING_GOVERNOR_ON_AC = "performance";
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
CPU_ENERGY_PERF_POLICY_ON_AC = "balance_performance";
CPU_ENERGY_PERF_POLICY_ON_BAT = "balance_power";
CPU_BOOST_ON_AC = 1;
CPU_BOOST_ON_BAT = 1;
PLATFORM_PROFILE_ON_AC = "balanced";
PLATFORM_PROFILE_ON_BAT = "balanced";
# TLP — settings owned by the TLP Profile Switcher GNOME extension.
# The extension does `pkexec cp ~/.tlp/<profile>.conf /etc/tlp.conf`, but
# NixOS makes /etc/tlp.conf a read-only symlink into the Nix store. We
# replace the symlink with a writable copy on every activation, AND if
# one of the user's ~/.tlp/*.conf matches the previous /etc/tlp.conf
# (= the user picked it from the panel), restore that one instead of the
# NixOS stub. This way the chosen profile survives nixos-rebuild switch.
services.tlp.enable = true;
system.activationScripts.tlpWritable = lib.stringAfter [ "etc" ] ''
profilesDir=/home/asxpi/.tlp
target=/etc/tlp.conf
activeMarker=/var/lib/tlp-active-profile
# AMD P-State
CPU_DRIVER_OPMODE_ON_AC = "active";
CPU_DRIVER_OPMODE_ON_BAT = "active";
# If the current file matches one of the user's profiles, remember it
# before NixOS replaces the symlink target.
if [ -f "$target" ] && [ ! -L "$target" ] && [ -d "$profilesDir" ]; then
currentSum=$(${pkgs.coreutils}/bin/sha256sum "$target" | ${pkgs.coreutils}/bin/cut -d' ' -f1)
for p in "$profilesDir"/*.conf; do
[ -f "$p" ] || continue
s=$(${pkgs.coreutils}/bin/sha256sum "$p" | ${pkgs.coreutils}/bin/cut -d' ' -f1)
if [ "$s" = "$currentSum" ]; then
${pkgs.coreutils}/bin/basename "$p" .conf > "$activeMarker"
break
fi
done
fi
# WiFi
WIFI_PWR_MGT_ON_AC = "off";
WIFI_PWR_MGT_ON_BAT = "on";
# Replace the read-only symlink with a writable real file.
if [ -L "$target" ]; then
cp --remove-destination "$(readlink -f "$target")" "$target"
chmod 0644 "$target"
fi
# PCIe ASPM
PCIE_ASPM_ON_AC = "default";
PCIE_ASPM_ON_BAT = "default";
# If we previously remembered an active profile, restore it.
if [ -f "$activeMarker" ]; then
active=$(cat "$activeMarker")
if [ -f "$profilesDir/$active.conf" ]; then
cp "$profilesDir/$active.conf" "$target"
chmod 0644 "$target"
fi
fi
'';
# Runtime PM
RUNTIME_PM_ON_AC = "on";
RUNTIME_PM_ON_BAT = "auto";
# NVMe
NVME_RUNTIME_PM_ON_AC = "on";
NVME_RUNTIME_PM_ON_BAT = "auto";
# USB autosuspend
USB_AUTOSUSPEND = 1;
# Hook the extension's cp: whenever /etc/tlp.conf changes via the panel,
# also update the marker. systemd.path watches the file mtime.
systemd.paths.tlp-active-profile-tracker = {
description = "Track which TLP profile is currently active";
wantedBy = [ "multi-user.target" ];
pathConfig = {
PathChanged = "/etc/tlp.conf";
Unit = "tlp-active-profile-tracker.service";
};
};
systemd.services.tlp-active-profile-tracker = {
description = "Update /var/lib/tlp-active-profile to match /etc/tlp.conf";
serviceConfig = {
Type = "oneshot";
ExecStart = pkgs.writeShellScript "tlp-track" ''
profilesDir=/home/asxpi/.tlp
target=/etc/tlp.conf
marker=/var/lib/tlp-active-profile
[ -f "$target" ] || exit 0
[ -d "$profilesDir" ] || exit 0
currentSum=$(${pkgs.coreutils}/bin/sha256sum "$target" | ${pkgs.coreutils}/bin/cut -d' ' -f1)
for p in "$profilesDir"/*.conf; do
[ -f "$p" ] || continue
s=$(${pkgs.coreutils}/bin/sha256sum "$p" | ${pkgs.coreutils}/bin/cut -d' ' -f1)
if [ "$s" = "$currentSum" ]; then
${pkgs.coreutils}/bin/basename "$p" .conf > "$marker"
exit 0
fi
done
'';
};
};
# Bluetooth off at boot
hardware.bluetooth.powerOnBoot = true;
hardware.bluetooth.settings = {
General = {
ControllerMode = "dual";
FastConnectable = true;
JustWorksRepairing = "always";
Privacy = "device";
Experimental = true;
};
};
# Battery monitoring
services.upower.enable = true;

View file

@ -0,0 +1,6 @@
{ ... }:
{
# Stub. Real values kept locally via:
# git update-index --skip-worktree modules/private/ssh-hosts.nix
programs.ssh.extraConfig = "";
}

View file

@ -0,0 +1,6 @@
# Stub. Real values kept locally via:
# git update-index --skip-worktree modules/private/xray-routes.nix
{
xrayServer = "0.0.0.0";
routeExcludeAddress = [ ];
}

View file

@ -2,6 +2,8 @@
{ config, pkgs, lib, ... }:
{
imports = [ ./private/ssh-hosts.nix ];
# GPG agent
programs.gnupg.agent = {
enable = true;
@ -49,6 +51,8 @@
# Enable the OpenSSH daemon.
# services.openssh.enable = true;
# SSH client extraConfig is provided by ./private/ssh-hosts.nix
# Enable fwupd service
services.fwupd.enable = true;

View file

@ -21,7 +21,10 @@
];
# Kernel Hardening
security.protectKernelImage = true;
# Disabled to allow hibernate (suspend-then-hibernate on P14s G6 AMD which has no S3).
# Hibernate image lives on LUKS-encrypted root, so the tamper window is the same as
# the LUKS threat boundary. Revisit if TPM-bound LUKS unlock gets set up.
security.protectKernelImage = false;
# Sysctl hardening
boot.kernel.sysctl = {

View file

@ -12,5 +12,9 @@
configFile = "/etc/wireguard/wg0.conf"; # TODO: Secret Manager. TODO: Add SSH, GPG as well to secret manager
autostart = true;
};
wg2 = {
configFile = "/etc/wireguard/wg2.conf";
autostart = true;
};
};
}

View file

@ -2,7 +2,8 @@
{ config, pkgs, lib, ... }:
let
xrayServer = "172.232.216.157";
private = import ./private/xray-routes.nix;
xrayServer = private.xrayServer;
in
{
# Xray — VLESS+Reality with post-quantum encryption
@ -32,12 +33,11 @@ in
type = "tun";
tag = "tun-in";
interface_name = "tun0";
address = [ "198.18.0.1/15" ];
address = [ "198.18.0.1/15" "fdfe:dcba:9876::1/126" ];
auto_route = true;
strict_route = true;
route_exclude_address = [ "${xrayServer}/32" ];
route_exclude_address = [ "${xrayServer}/32" ] ++ private.routeExcludeAddress;
stack = "gvisor";
sniff = true;
}];
outbounds = [
@ -46,7 +46,7 @@ in
tag = "xray";
server = "127.0.0.1";
server_port = 10808;
udp_over_tcp = true;
udp_over_tcp = false;
}
{
type = "direct";
@ -67,17 +67,15 @@ in
type = "local";
}
];
rules = [
{
outbound = [ "any" ];
server = "direct-dns";
}
];
};
route = {
auto_detect_interface = true;
default_domain_resolver = "doh-proxy";
rules = [
{
action = "sniff";
}
{
protocol = "dns";
action = "hijack-dns";