repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
grafana-alloy: don't build the frontend twice
[NixPkgs.git]
/
nixos
/
modules
/
tasks
/
filesystems
/
exfat.nix
blob
4011653c00df111e87072e8cb464aebf992805b4
1
{ config, lib, pkgs, ... }:
2
3
with lib;
4
5
{
6
config = mkIf (config.boot.supportedFilesystems.exfat or false) {
7
system.fsPackages = if config.boot.kernelPackages.kernelOlder "5.7" then [
8
pkgs.exfat # FUSE
9
] else [
10
pkgs.exfatprogs # non-FUSE
11
];
12
};
13
}