nixos_config/hosts/tower/configuration.nix
2025-07-23 19:46:19 +02:00

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