add smartmontools to baseline

This commit is contained in:
Sean Buckley 2025-01-02 19:51:03 -05:00
parent 6024fa5c2b
commit 5660377a61

View file

@ -1,4 +1,9 @@
{ config, lib, ... }: {
config,
lib,
pkgs,
...
}:
{ {
time.timeZone = "America/New_York"; time.timeZone = "America/New_York";
@ -68,4 +73,8 @@
''; '';
}; };
}; };
environment.systemPackages = with pkgs; [
smartmontools
];
} }