All my system configs and packages in one repo
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

pappardelle: use upstreamed nixos-hardware config

+9 -29
+6 -6
flake.lock
··· 225 225 }, 226 226 "nixos-hardware": { 227 227 "locked": { 228 - "lastModified": 1751432711, 229 - "narHash": "sha256-136MeWtckSHTN9Z2WRNRdZ8oRP3vyx3L8UxeBYE+J9w=", 230 - "owner": "NixOS", 228 + "lastModified": 1751998807, 229 + "narHash": "sha256-0CvZDaZTaESXHywaki/KoyBYfmJTyxiCaPnjoFmrsDg=", 230 + "owner": "pluiedev", 231 231 "repo": "nixos-hardware", 232 - "rev": "497ae1357f1ac97f1aea31a4cb74ad0d534ef41f", 232 + "rev": "7667779940543d7da76d1816ed09317f5a11805e", 233 233 "type": "github" 234 234 }, 235 235 "original": { 236 - "owner": "NixOS", 237 - "ref": "master", 236 + "owner": "pluiedev", 237 + "ref": "pluie/jj-nsvpsuspltqm", 238 238 "repo": "nixos-hardware", 239 239 "type": "github" 240 240 }
+1 -1
flake.nix
··· 34 34 inputs.nixpkgs.follows = "nixpkgs"; 35 35 }; 36 36 37 - nixos-hardware.url = "github:NixOS/nixos-hardware/master"; 37 + nixos-hardware.url = "github:pluiedev/nixos-hardware/pluie/jj-nsvpsuspltqm"; 38 38 }; 39 39 40 40 outputs =
+2 -22
systems/pappardelle/default.nix
··· 9 9 ./hardware-configuration.nix 10 10 ../../users/leah 11 11 12 - # nixos-hardware does not yet have a specific configuration 13 - # for the XiaoXin Pro 14 GT (= IdeaPad Slim 14, model 14IAH10), 14 - # but it's very easy to cobble together what upstream has provided 15 - common-cpu-intel 16 - common-pc-laptop 17 - common-pc-laptop-ssd 12 + lenovo-ideapad-14iah10 18 13 ]; 19 - 20 - # Specific to Meteor Lake and above 21 - hardware.intelgpu.vaapiDriver = "intel-media-driver"; 22 14 23 15 hardware.bluetooth.enable = true; 24 16 ··· 27 19 boot = { 28 20 # FIXME: switch back to latest xanmod after 6.15.5 29 21 kernelPackages = pkgs.linuxPackages_latest; 30 - 31 - # DSP-based SOF drivers currently don't work due to missing topology 32 - # definitions, so we fall back to old snd_hda_intel drivers 33 - extraModprobeConfig = '' 34 - options snd-intel-dspcfg dsp_driver=1 35 - ''; 36 - 37 - # HACK HACK HACK: Disable PCIe Power Management to completely disallow 38 - # the Wi-Fi adapter from turning off. This will be problematic for 39 - # performance, but at least I would have working Wi-Fi after waking up 40 - # from a suspend. 41 - kernelParams = [ "pcie_port_pm=off" ]; 42 - }; 22 + }; 43 23 44 24 # Enable building and testing aarch64 packages for Nixpkgs dev 45 25 boot.binfmt.emulatedSystems = [ "aarch64-linux" ];