Adding xfs support at supportedFilesystems
svn path=/nixos/trunk/; revision=33311
This commit is contained in:
parent
a22bdbaeda
commit
6af26254ad
@ -208,6 +208,7 @@
|
|||||||
./tasks/filesystems/nfs.nix
|
./tasks/filesystems/nfs.nix
|
||||||
./tasks/filesystems/reiserfs.nix
|
./tasks/filesystems/reiserfs.nix
|
||||||
./tasks/filesystems/vfat.nix
|
./tasks/filesystems/vfat.nix
|
||||||
|
./tasks/filesystems/xfs.nix
|
||||||
./tasks/kbd.nix
|
./tasks/kbd.nix
|
||||||
./tasks/lvm.nix
|
./tasks/lvm.nix
|
||||||
./tasks/network-interfaces.nix
|
./tasks/network-interfaces.nix
|
||||||
|
29
modules/tasks/filesystems/xfs.nix
Normal file
29
modules/tasks/filesystems/xfs.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
with pkgs.lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
|
||||||
|
inInitrd = any (fs: fs == "xfs") config.boot.initrd.supportedFilesystems;
|
||||||
|
|
||||||
|
in
|
||||||
|
|
||||||
|
{
|
||||||
|
config = mkIf (any (fs: fs == "xfs") config.boot.supportedFilesystems) {
|
||||||
|
|
||||||
|
system.fsPackages = [ pkgs.xfsprogs ];
|
||||||
|
|
||||||
|
boot.initrd.kernelModules = mkIf inInitrd [ "xfs" ];
|
||||||
|
|
||||||
|
boot.initrd.extraUtilsCommands = mkIf inInitrd
|
||||||
|
''
|
||||||
|
cp -v ${pkgs.xfsprogs}/sbin/fsck.xfs $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Trick just to set 'sh' after the extraUtils nuke-refs.
|
||||||
|
boot.initrd.extraUtilsCommandsTest = mkIf inInitrd
|
||||||
|
''
|
||||||
|
sed -i -e 's,^#!.*,#!'$out/bin/sh, $out/bin/fsck.xfs
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user