mirror of
https://github.com/buckley310/nixos-config.git
synced 2025-01-11 19:49:02 +00:00
add smartmontools to baseline
This commit is contained in:
parent
6024fa5c2b
commit
5660377a61
1 changed files with 10 additions and 1 deletions
|
@ -1,4 +1,9 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
time.timeZone = "America/New_York";
|
||||
|
||||
|
@ -68,4 +73,8 @@
|
|||
'';
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
smartmontools
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue