mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-11 07:10:39 +02:00
feat: disable some more unnecessary stuff for the minimal image
This commit is contained in:
parent
73d7a42879
commit
8fb6b63e6f
4 changed files with 23 additions and 3 deletions
|
@ -1,11 +1,16 @@
|
|||
# Configuration for actual physical machines
|
||||
{config, ...}: {
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
minimal,
|
||||
...
|
||||
}: {
|
||||
hardware = {
|
||||
enableRedistributableFirmware = true;
|
||||
enableAllFirmware = true;
|
||||
};
|
||||
|
||||
services = {
|
||||
services = lib.mkIf (!minimal) {
|
||||
fwupd.enable = true;
|
||||
smartd.enable = true;
|
||||
thermald.enable = builtins.elem config.nixpkgs.hostPlatform.system ["x86_64-linux"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue