15 lines
363 B
Nix
15 lines
363 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
../../common
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "lena";
|
|
|
|
# Basic hardware support (Microcode updates appropriate for Intel/AMD depending on what Lena is)
|
|
# Assuming Lena is standard, we enable firmware. Update if Lena is ancient.
|
|
hardware.enableAllFirmware = true;
|
|
}
|