grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / tasks / filesystems / ntfs.nix
blob99ba494a7a39ea0711cc1b3f0a2c4036fc4a97b6
1 { config, lib, pkgs, ... }:
3 with lib;
6   config = mkIf (config.boot.supportedFilesystems.ntfs or config.boot.supportedFilesystems.ntfs-3g or false) {
8     system.fsPackages = [ pkgs.ntfs3g ];
10   };