{ pkgs, ... }: { environment = { # Systemwide installed packages systemPackages = with pkgs; [ stremio ]; }; boot = { kernelParams = [ "console=tty0" ]; loader = { efi.canTouchEfiVariables = true; systemd-boot = { enable = true; editor = false; }; }; }; }