Files
nix-config/machines/hermes/configuration.nix
2021-05-05 22:46:37 -04:00

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;
}