Files
nix/hosts/common/configs/system/btrfs/default.nix
2025-05-29 16:59:00 +01:00

15 lines
260 B
Nix

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