mirror of
https://github.com/EdenQwQ/nixos.git
synced 2026-07-16 22:16:51 +08:00
10 lines
205 B
Nix
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"
|
|
];
|
|
}
|