this has weird side effects on the AMD thinkpad (of course), but since that is stationary in my office anyways the power-saving stuff doesn't matter so much there. Change-Id: Ie43e3a86b2da885c25eb5c3eb36683adb14edd1a Reviewed-on: https://cl.tvl.fyi/c/depot/+/5948 Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
		
			
				
	
	
		
			84 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| # zamalek is my Huawei MateBook X (unknown year)
 | |
| { depot, lib, pkgs, ... }:
 | |
| 
 | |
| config:
 | |
| let
 | |
|   mod = name: depot.path.origSrc + ("/ops/modules/" + name);
 | |
|   usermod = name: depot.path.origSrc + ("/users/tazjin/nixos/modules/" + name);
 | |
| 
 | |
|   zdevice = device: {
 | |
|     inherit device;
 | |
|     fsType = "zfs";
 | |
|   };
 | |
| in
 | |
| {
 | |
|   imports = [
 | |
|     (usermod "desktop.nix")
 | |
|     (usermod "fonts.nix")
 | |
|     (usermod "hidpi.nix")
 | |
|     (usermod "home-config.nix")
 | |
|     (usermod "laptop.nix")
 | |
|     (usermod "persistence.nix")
 | |
|     (usermod "physical.nix")
 | |
|     (usermod "zerotier.nix")
 | |
| 
 | |
|     (pkgs.home-manager.src + "/nixos")
 | |
|   ] ++ lib.optional (builtins.pathExists ./local-config.nix) ./local-config.nix;
 | |
| 
 | |
|   tvl.cache.enable = true;
 | |
| 
 | |
|   boot = {
 | |
|     initrd.availableKernelModules = [ "nvme" "xhci_pci" ];
 | |
|     loader.systemd-boot.enable = true;
 | |
|     loader.efi.canTouchEfiVariables = true;
 | |
|     supportedFilesystems = [ "zfs" ];
 | |
|     zfs.devNodes = "/dev/";
 | |
| 
 | |
|     extraModprobeConfig = ''
 | |
|       options snd_hda_intel power_save=1
 | |
|       options iwlwifi power_save=1
 | |
|       options iwldvm force_cam=0
 | |
|       options i915 enable_guc=3 enable_fbc=1
 | |
|     '';
 | |
|   };
 | |
| 
 | |
|   fileSystems = {
 | |
|     "/" = zdevice "zpool/ephemeral/root";
 | |
|     "/home" = zdevice "zpool/ephemeral/home";
 | |
|     "/persist" = zdevice "zpool/persistent/data" // { neededForBoot = true; };
 | |
|     "/nix" = zdevice "zpool/persistent/nix";
 | |
|     "/depot" = zdevice "zpool/persistent/depot";
 | |
| 
 | |
|     "/boot" = {
 | |
|       device = "/dev/disk/by-uuid/2487-3908";
 | |
|       fsType = "vfat";
 | |
|     };
 | |
|   };
 | |
| 
 | |
|   networking = {
 | |
|     hostName = "zamalek";
 | |
|     domain = "tvl.su";
 | |
|     hostId = "ee399356";
 | |
|     networkmanager.enable = true;
 | |
|     networkmanager.dns = "none";
 | |
| 
 | |
|     nameservers = [
 | |
|       "8.8.8.8"
 | |
|       "8.8.4.4"
 | |
|     ];
 | |
|   };
 | |
| 
 | |
|   hardware = {
 | |
|     cpu.intel.updateMicrocode = true;
 | |
|     bluetooth.enable = true;
 | |
|     enableRedistributableFirmware = true;
 | |
|     opengl.enable = true;
 | |
|   };
 | |
| 
 | |
|   services.xserver.libinput.touchpad.clickMethod = "clickfinger";
 | |
|   services.tailscale.enable = true;
 | |
|   services.avahi.enable = true;
 | |
|   powerManagement.powertop.enable = true;
 | |
| 
 | |
|   system.stateVersion = "21.11";
 | |
| }
 |