Separate filesystems config into own file

This commit is contained in:
Jimbo 2024-09-24 23:57:59 -04:00
parent deac8e4bc1
commit 6aad24d535
5 changed files with 8 additions and 12 deletions

View file

@ -0,0 +1,6 @@
{lib, ...}: {
boot.supportedFilesystems = {
ntfs = true;
zfs = lib.mkForce false;
};
}