13 lines
239 B
Nix
13 lines
239 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[ ./hardware-configuration.nix ];
|
|
networking.hostName = "tower";
|
|
|
|
boot = {
|
|
loader.systemd-boot.enable = true;
|
|
loader.efi.canTouchEfiVariables = true;
|
|
initrd.enable = true;
|
|
};
|
|
}
|