NixOS_Television/system/other.nix

22 lines
332 B
Nix
Raw Normal View History

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