mirror of
https://github.com/JaxTheWolf/nixos.git
synced 2026-03-31 17:50:23 +02:00
38 lines
479 B
Nix
38 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
|
|
];
|
|
};
|
|
};
|
|
}
|