nixos_config/hosts/tesla-nixos/configuration.nix
2025-08-14 12:27:04 +02:00

13 lines
266 B
Nix

{ config, pkgs, ... }:
{
imports =
[ ./hardware-configuration.nix ];
networking.hostName = "tesla-nixos";
boot.initrd.enable = true;
boot.loader = {
systemd-boot = {
enable = true;
}; # end loader.systemd-boot
}; # end boot
} # end file