tangled
alpha
login
or
join now
diddyfo.id
/
nix
0
fork
atom
configs
0
fork
atom
overview
issues
pulls
pipelines
Add auto-updates
diddyfo.id
2 months ago
e73376a1
86b45dc2
verified
This commit was signed with the committer's
known signature
.
diddyfo.id
SSH Key Fingerprint:
SHA256:tV3v2UX4P3x12jjh+mHVzpRQ4ZhNBCHoFwqRiYzzTcM=
+16
1 changed file
expand all
collapse all
unified
split
configuration.nix
+16
configuration.nix
···
23
23
];
24
24
};
25
25
26
26
+
nix.gc = {
27
27
+
automatic = true;
28
28
+
dates = "weekly";
29
29
+
options = "--delete-older-than 30d";
30
30
+
};
31
31
+
32
32
+
system.autoUpgrade = {
33
33
+
enable = true;
34
34
+
dates = "weekly";
35
35
+
allowReboot = true;
36
36
+
rebootWindow = {
37
37
+
lower = "04:00";
38
38
+
upper = "06:00";
39
39
+
};
40
40
+
};
41
41
+
26
42
environment.variables.EDITOR = "nano";
27
43
28
44
system.stateVersion = "25.05";