summary refs log blame commit diff
path: root/nixos/modules/tasks/filesystems/ntfs.nix
blob: c40d2a1a80bc568b5ab48068b8a723db74bbafcb (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                                              

    
{ config, lib, pkgs, ... }:

with lib;

{
  config = mkIf (any (fs: fs == "ntfs" || fs == "ntfs-3g") config.boot.supportedFilesystems) {

    system.fsPackages = [ pkgs.ntfs3g ];

  };
}