nixos_config/hosts/tesla-nixos/configuration.nix

14 lines
266 B
Nix
Raw Normal View History

2025-08-12 21:00:01 +02:00
{ 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