Files
nixos/laptop/default.nix

39 lines
480 B
Nix
Raw Normal View History

2026-02-17 20:02:25 +01:00
{
config,
pkgs,
lib,
...
}:
{
imports = [
./hardware-configuration.nix
./modules
../common
];
networking = {
hostName = "dalaptop";
};
hardware = {
cpu.intel.updateMicrocode = true;
bluetooth = {
settings = {
General = {
Name = "dalaptop";
};
};
};
2026-03-02 06:21:29 +01:00
graphics = {
enable = true;
extraPackages = with pkgs; [
vaapi-intel-hybrid
vpl-gpu-rt
];
};
2026-02-17 20:02:25 +01:00
};
}