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