profiles: add btrfs profile

This commit is contained in:
Infinidoge 2021-10-27 10:01:23 -04:00
parent d190b88a8c
commit 98b95c4dfd

10
profiles/btrfs.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
btrfs-progs
];
srvices.btrfs.autoScrub = {
enable = true;
interval = "monthly";
};
}