mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 07:13:40 +00:00
16 lines
278 B
Nix
16 lines
278 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./hardware.nix ];
|
|
|
|
# Use the systemd-boot EFI boot loader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.hostName = "hermes";
|
|
|
|
networking.interfaces.wlp61s0.useDHCP = true;
|
|
|
|
}
|
|
|