9 lines
197 B
Nix
Executable file
9 lines
197 B
Nix
Executable file
{ config, lib, pkgs, ...}:
|
|
|
|
{
|
|
# Use the systemd-boot EFI boot loader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.hostName = "riri";
|
|
}
|