blob: d026eeb29d28331520059bbeb3394a7daac8d364 (
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;
programs.nh = {
enable = true;
clean.enable = true;
clean.extraArgs = "--keep-days ${toString cfg.keepDays} --keep 5";
};
services.fstrim.enable = true;
services.btrfs.autoScrub = {
enable = true;
interval = "monthly";
fileSystems = [ "/" ];
};
boot.tmp = {
useTmpfs = true;
tmpfsSize = "50%";
};
};
}
|