Thanks. It's easy to enable them.
```nix
# Automatic Garbage Collection
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
```
And
```nix
# Auto system update
system.autoUpgrade = {
enable = true;
};
```
If you understand how to modify your nix os config. Then make sure you have automatic gargage collection and channel updates. Otherwise you are going to have a lot of space eaten up needlessly over time and sometimes out of date software.
Also, if you want to dive a little deeper. Switch to Determinant Nix after the installation. Created by the creator of Nix, backed by a solid company, and has a more professional level experience.
https://determinate.systems/posts/determinate-nix-installer/
Thanks. It's easy to enable them.
```nix
# Automatic Garbage Collection
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
```
And
```nix
# Auto system update
system.autoUpgrade = {
enable = true;
};
```
No replies yet.