15 lines
260 B
Nix
15 lines
260 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot = {
|
|
initrd.supportedFilesystems = [ "btrfs" ];
|
|
supportedFilesystems = [ "btrfs" ];
|
|
};
|
|
|
|
services.btrfs.autoScrub = {
|
|
enable = true;
|
|
interval = "weekly";
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [ compsize ];
|
|
}
|