config/modules/profiles/btrfs/default.nix

7 lines
124 B
Nix
Raw Normal View History

2024-07-29 15:39:54 +03:00
{ pkgs, ... }:
{
boot.supportedFilesystems = [ "btrfs" ];
2024-05-06 05:55:27 +03:00
2024-07-29 15:39:54 +03:00
environment.systemPackages = [ pkgs.btrfs-auto-snapshot ];
2024-05-06 05:55:27 +03:00
}