mirror of
https://github.com/davegallant/nix-config
synced 2025-08-05 23:03:40 +00:00
18 lines
328 B
Nix
18 lines
328 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;
|
|
|
|
services.power-profiles-daemon.enable = false;
|
|
|
|
}
|
|
|