mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
feat: adds smartd, changes scrutiny to be more generic smart stuff
This commit is contained in:
parent
71081eb600
commit
17bc3c6d52
3 changed files with 34 additions and 20 deletions
|
|
@ -5,5 +5,5 @@
|
||||||
++ [ (import ./immich.nix) ]
|
++ [ (import ./immich.nix) ]
|
||||||
++ [ (import ./nextcloud.nix) ]
|
++ [ (import ./nextcloud.nix) ]
|
||||||
++ [ (import ./home-assistant.nix) ]
|
++ [ (import ./home-assistant.nix) ]
|
||||||
++ [ (import ./scrutiny.nix) ];
|
++ [ (import ./smart-monitoring.nix) ];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,19 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.smartd = {
|
||||||
|
enable = true;
|
||||||
|
autodetect = true;
|
||||||
|
notifications = {
|
||||||
|
mail = {
|
||||||
|
enable = true;
|
||||||
|
# mailer = "/path/to/mailer/binary";
|
||||||
|
sender = "${config.liv.variables.fromEmail}";
|
||||||
|
recipient = "${config.liv.variables.toEmail}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# services.nginx.virtualHosts."" = {
|
# services.nginx.virtualHosts."" = {
|
||||||
# locations."/" = {
|
# locations."/" = {
|
||||||
# proxyPass = "http://localhost:8181/";
|
# proxyPass = "http://localhost:8181/";
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
{ ...}: {
|
{ ... }:
|
||||||
|
{
|
||||||
imports =
|
imports =
|
||||||
[ (import ./invidious.nix) ]
|
[ (import ./invidious.nix) ]
|
||||||
++ [ (import ./mumble.nix) ]
|
++ [ (import ./mumble.nix) ]
|
||||||
|
|
@ -16,7 +17,7 @@
|
||||||
++ [ (import ./jellyfin.nix) ]
|
++ [ (import ./jellyfin.nix) ]
|
||||||
++ [ (import ./readarr.nix) ]
|
++ [ (import ./readarr.nix) ]
|
||||||
++ [ (import ./lidarr.nix) ]
|
++ [ (import ./lidarr.nix) ]
|
||||||
# ++ [(import ./scrutiny.nix)]
|
# ++ [(import ./smart-monitoring.nix)]
|
||||||
# ++ [(import ./jitsi-meet.nix)]
|
# ++ [(import ./jitsi-meet.nix)]
|
||||||
++ [ (import ./forgejo.nix) ]
|
++ [ (import ./forgejo.nix) ]
|
||||||
++ [ (import ./matrix/default.nix) ];
|
++ [ (import ./matrix/default.nix) ];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue