ntfs --> nfs

This commit is contained in:
Joseph Hanson 2024-07-13 03:06:35 -05:00
parent f27dff190a
commit e00ea5c226
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -1,18 +1,14 @@
{ lib, pkgs, ... }: { lib, pkgs, ... }:
with lib; with lib;
{ {
mySystem.system.packages = with pkgs; [
ntfs3g
];
boot = { boot = {
initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
kernelModules = [ ]; kernelModules = [ ];
extraModulePackages = [ ]; extraModulePackages = [ ];
# for managing/mounting ntfs # for managing/mounting nfs
supportedFilesystems = [ "ntfs" ]; supportedFilesystems = [ "nfs" ];
loader = { loader = {
systemd-boot.enable = true; systemd-boot.enable = true;