Files
nixos/laptop/default.nix
2026-02-18 19:50:56 +01:00

31 lines
344 B
Nix

{
config,
pkgs,
lib,
...
}:
{
imports = [
./hardware-configuration.nix
./modules
../common
];
networking = {
hostName = "dalaptop";
};
hardware = {
cpu.intel.updateMicrocode = true;
bluetooth = {
settings = {
General = {
Name = "dalaptop";
};
};
};
};
}