From 22bc76a0fc5eda6735fe7711a8afc330fe44e5ca Mon Sep 17 00:00:00 2001 From: Joel Grunbaum <joelgrun@gmail.com> Date: Tue, 15 Jul 2025 10:42:32 +0000 Subject: [PATCH] Add smini nix config with modularised config --- nixos/btrfs.nix | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/nixos/btrfs.nix b/nixos/btrfs.nix new file mode 100644 index 0000000..8f80747 --- /dev/null +++ b/nixos/btrfs.nix @@ -0,0 +1,10 @@ +{ config, libs, pkgs, modulesPath, ... }: + +{ + services.btrfs = { + autoScrub = { + enable = true; + interval = "weekly"; + }; + }; +} -- Gitblit v1.10.0