{ config, pkgs, ... }: { # nixpkgs.overlays = [ # (final: prev: { # libinput = prev.libinput.overrideAttrs (old: { # patches = # (old.patches or []) # ++ [ # ../extras/libinput-delay.patch # ]; # }); # }) # ]; environment.systemPackages = with pkgs; [ framework-tool nvtopPackages.amd ]; services.fwupd.enable = true; services.tailscale.useRoutingFeatures = "client"; systemd.services."backlight@backlight:amdgpu_bl2".enable = false; environment.etc = { "libinput/local-overrides.quirks".text = " # MatchUdevType=touchpad # MatchDMIModalias=dmi:*svnFramework:pnLaptop* # AttrEventCode=-BTN_RIGHT [Framework Laptop 16 Keyboard Module] MatchName=Framework Laptop 16 Keyboard Module* # MatchUdevType=keyboard # MatchDMIModalias=dmi:*svnFramework:pnLaptop16* AttrKeyboardIntegration=internal"; }; services.displayManager.defaultSession = "plasma"; nix.buildMachines = [ { hostName = "nocomputer"; systems = ["x86_64-linux" "i686-linux"]; supportedFeatures = ["big-parallel" "kvm" "nixos-test" "benchmark"]; } ]; nix.extraOptions = '' builders-use-substitutes = true ''; nix.distributedBuilds = true; services.udev.extraRules = '' ACTION=="add", SUBSYSTEM=="backlight", RUN+="${pkgs.coreutils}/bin/chgrp video /sys/class/backlight/%k/brightness" ACTION=="add", SUBSYSTEM=="backlight", RUN+="${pkgs.coreutils}/bin/chmod g+w /sys/class/backlight/%k/brightness" # prevent kb and mouse from waking laptop ACTION=="add", SUBSYSTEM=="usb", KERNEL=="1-3.2", ATTR{power/wakeup}="disabled" ACTION=="add", SUBSYSTEM=="usb", KERNEL=="1-4.2", ATTR{power/wakeup}="disabled" ''; boot.kernelPackages = pkgs.linuxPackages_latest; # boot.kernelPackages = pkgs.linuxPackages_zen; boot.initrd.availableKernelModules = [ "nvme" "sd_mod" "thunderbolt" "usb_storage" "xhci_pci" "usbhid" "uas" ]; boot.kernelParams = [ # "mem_sleep_default=deep" "amdgpu.abmlevel=1" # TODO DMUB bugfix? (apparently disables PSR?) # "amdgpu.dcdebugmask=0x10" ]; boot.kernelModules = ["kvm-amd"]; boot.extraModulePackages = with config.boot.kernelPackages; [ framework-laptop-kmod ]; powerManagement.cpuFreqGovernor = "powersave"; systemd.sleep.extraConfig = "HibernateDelaySec=180m"; fileSystems."/home/tao/games" = { device = "/dev/disk/by-uuid/d97a81dc-669c-41d1-912b-829f88fd6f69"; fsType = "btrfs"; options = ["subvol=/home/tao/games" "nosuid" "nodev" "noatime" "compress-force=zstd:3" "users" "rw" "exec" "discard=async"]; }; fileSystems."/home" = { device = "/dev/disk/by-uuid/d97a81dc-669c-41d1-912b-829f88fd6f69"; fsType = "btrfs"; options = ["subvol=home" "noatime" "compress-force=zstd:3" "discard=async"]; }; fileSystems."/" = { device = "/dev/disk/by-uuid/d97a81dc-669c-41d1-912b-829f88fd6f69"; fsType = "btrfs"; options = ["noatime" "compress-force=zstd:3" "discard=async"]; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/8E28-E53F"; fsType = "vfat"; }; swapDevices = [{device = "/dev/disk/by-uuid/36216521-db46-4bb0-8994-38a36d5c4528";}]; networking.hostName = "NOlaptop"; }