EdenQwQ/hosts/xiaomi/os.nix
2026-03-24 13:40:22 +08:00

10 lines
205 B
Nix

{ host, pkgs, ... }:
{
imports = [ ./hardware-configuration.nix ];
system.stateVersion = "26.05";
networking.hostName = host;
boot.kernelParams = [
"i8042.dumbkbd"
"xe.enable_psr=0"
];
}