blob: 22abcd7fa94ee8e2b2338c9daff9cdc823fda6ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{ config, lib, ... }:
let
cfg = config.sys.core.storage;
in
{
options.sys.core.storage = {
enable = lib.mkEnableOption "enables storage management";
keepDays = lib.mkOption {
type = lib.types.int;
default = 14;
description = "Number of days to keep old Nix generations before GC.";
};
};
config = lib.mkIf cfg.enable {
nix.settings.auto-optimise-store = true;
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than ${toString cfg.keepDays}d";
};
services.fstrim.enable = true;
services.btrfs.autoScrub = {
enable = true;
interval = "monthly";
fileSystems = [ "/" ];
};
boot.tmp = {
useTmpfs = true;
tmpfsSize = "50%";
};
};
}
|