stockholm/tv/2configs/hw/AO753.nix

52 lines
988 B
Nix
Raw Normal View History

2016-02-02 19:17:10 +00:00
{ config, lib, pkgs, ... }:
2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
2015-07-11 14:55:22 +00:00
{
imports = [
2015-10-29 00:09:54 +00:00
../smartd.nix
{
nix.buildCores = 2;
nix.maxJobs = 2;
}
(if lib.versionAtLeast (lib.versions.majorMinor lib.version) "21.11" then {
nix.daemonCPUSchedPolicy = "batch";
nix.daemonIOSchedPriority = 1;
} else {
nix.daemonIONiceLevel = 1;
nix.daemonNiceLevel = 1;
})
2015-07-11 14:55:22 +00:00
];
boot.loader.grub = {
device = "/dev/sda";
splashImage = null;
};
boot.initrd.availableKernelModules = [
"ahci"
];
boot.kernelModules = [
"kvm-intel"
"wl"
];
boot.extraModulePackages = [
config.boot.kernelPackages.broadcom_sta
];
services.logind.extraConfig = ''
HandleHibernateKey=ignore
HandleLidSwitch=ignore
HandlePowerKey=ignore
HandleSuspendKey=ignore
'';
2019-09-04 18:17:56 +00:00
krebs.nixpkgs.allowUnfreePredicate = pkg: packageName pkg == "broadcom-sta";
2021-02-15 13:00:47 +00:00
tv.hw.screens.primary.width = 1366;
tv.hw.screens.primary.height = 768;
2015-07-11 14:55:22 +00:00
}