enable btrfs autoScrub

This commit is contained in:
Adithya 2023-11-05 17:01:59 +05:30
parent 2f6e08d3df
commit 2afab55bf4
Signed by: adtya
GPG key ID: 48FC9915FFD326D0
6 changed files with 31 additions and 1 deletions

View file

@ -0,0 +1,6 @@
_: {
services.btrfs.autoScrub = {
enable = true;
interval = "weekly";
};
}

View file

@ -1,5 +1,6 @@
{ ... }: {
imports = [
./btrfs.nix
./caddy.nix
./dendrite
./frpc.nix

View file

@ -0,0 +1,6 @@
_: {
services.btrfs.autoScrub = {
enable = true;
interval = "weekly";
};
}

View file

@ -1,3 +1,13 @@
_: {
imports = [ ./adtya.xyz.nix ./caddy.nix ./frpc.nix ./if3.nix ./proofs.nix ./ssh.nix ./wiki.nix ];
imports = [
./adtya.xyz.nix
./btrfs.nix
./caddy.nix
./frpc.nix
./if3.nix
./proofs.nix
./ssh.nix
./wiki.nix
];
}

View file

@ -0,0 +1,6 @@
_: {
services.btrfs.autoScrub = {
enable = true;
fileSystems = [ "/mnt/system" ];
};
}

View file

@ -4,6 +4,7 @@ let
in
{
imports = [
./btrfs.nix
./dbus.nix
./keyd.nix
./pipewire.nix