We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a4071a commit 9a1043dCopy full SHA for 9a1043d
system/default.nix
@@ -29,6 +29,7 @@ in {
29
./performance
30
./power
31
./printing
32
+ ./scrutiny # Hard Drive S.M.A.R.T Monitoring, historical trends
33
./security
34
./smb
35
./stylix
system/scrutiny/default.nix
@@ -0,0 +1,26 @@
1
+{
2
+ lib,
3
+ isImpermanent,
4
+ ...
5
+}: {
6
+ environment.persistence."/persist/system" = lib.mkIf isImpermanent {
7
+ directories = [
8
+ {
9
+ directory = "/var/lib/private";
10
+ mode = "0700";
11
+ }
12
+ "/var/lib/private/scrutiny"
13
+ ];
14
+ };
15
+
16
+ services.scrutiny = {
17
+ enable = true;
18
+ settings.web.listen.port = 8081;
19
20
21
+ systemd.services.scrutiny.enableStrictShellChecks = false;
22
23
+ systemd.tmpfiles.rules = [
24
+ "d /var/lib/private 0700 root root -"
25
26
+}
0 commit comments