ntfs --> nfs
This commit is contained in:
parent
f27dff190a
commit
e00ea5c226
1 changed files with 2 additions and 6 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue