nixos_config/hosts/tower/configuration.nix

14 lines
239 B
Nix
Raw Normal View History

2025-07-20 17:46:39 +02:00
{ config, pkgs, ... }:
{
imports =
[ ./hardware-configuration.nix ];
2025-07-23 19:46:19 +02:00
networking.hostName = "tower";
2025-07-21 23:55:59 +02:00
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
2025-07-23 19:46:19 +02:00
initrd.enable = true;
2025-07-21 23:55:59 +02:00
};
2025-07-20 17:46:39 +02:00
}