nix-git/modules/ntfs.nix

11 lines
192 B
Nix
Raw Normal View History

2023-09-20 13:37:48 +02:00
{ config, pkgs, ... }:
{
# https://nixos.wiki/wiki/NTFS
2023-12-21 16:26:56 +01:00
# Mounting.
# sudo mount /dev/sdX /mnt -t ntfs3
# Enable NTFS support at boot.
#boot.supportedFilesystems = [ "ntfs" ];
2023-09-20 13:37:48 +02:00
}