Files
nixos/laptop/default.nix
2026-03-23 21:24:20 +01:00

37 lines
479 B
Nix

{
config,
pkgs,
lib,
...
}: {
imports = [
./hardware-configuration.nix
./modules
../common
];
networking = {
hostName = "dalaptop";
};
hardware = {
cpu.intel.updateMicrocode = true;
bluetooth = {
settings = {
General = {
Name = "dalaptop";
};
};
};
graphics = {
enable = true;
extraPackages = with pkgs; [
vaapi-intel-hybrid
vpl-gpu-rt
];
};
};
}