Enable ZFS

This commit is contained in:
Jimbo 2024-12-20 13:59:46 -05:00
parent a896ed23ee
commit 51a7d103d1
2 changed files with 4 additions and 4 deletions

View file

@ -106,7 +106,7 @@
nmap <C-x> :bnext<CR>
nmap <C-z> :bprev<CR>
nmap <C-w> :bd<CR>
nmap <C-a> :NERDTreeToggle
nmap <C-a> :NERDTreeToggleVCS
'';
};
}

View file

@ -1,8 +1,8 @@
{ lib, ... }:
{
boot.supportedFilesystems = {
ntfs = true;
zfs = lib.mkForce false;
boot = {
supportedFilesystems.ntfs = true;
zfs.package = pkgs.zfs_unstable;
};
services = {