Files
nixos/laptop/default.nix

33 lines
378 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";
};
};
};
};
system.stateVersion = "25.05";
}