NixOS_Television/system/other.nix

22 lines
332 B
Nix

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