15 lines
353 B
Nix
15 lines
353 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[ # Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
../workstation.nix
|
|
];
|
|
networking.hostName = "firefly"; # Define your hostname.
|
|
|
|
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
|
system.stateVersion = "22.11"; # Did you read the comment?
|
|
|
|
}
|