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

49 lines
985 B
Nix
Raw Normal View History

2022-12-09 00:31:56 +00:00
with import ./lib;
{ config, pkgs, ... }: {
2015-07-11 14:55:22 +00:00
imports = [
2015-10-29 00:09:54 +00:00
../smartd.nix
{
2023-01-06 20:27:58 +00:00
nix.settings.cores = 2;
nix.settings.max-jobs = 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
}