14 lines
266 B
Nix
14 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
|