Compare commits

..

2 commits

Author SHA1 Message Date
Jimbo 5686499903 Enable ZFS but again 2024-12-20 14:03:04 -05:00
Jimbo 51a7d103d1 Enable ZFS 2024-12-20 13:59:46 -05:00
2 changed files with 5 additions and 5 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<CR>
'';
};
}

View file

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