nix-cluster/cluster/nodes/riri.nix

16 lines
304 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";
# Setting up environment variables
environment.sessionVariables = rec {
NODE = "riri";
};
}