NixOS-Configuration/filesystems.nix
2023-08-27 17:14:35 -06:00

10 lines
168 B
Nix

{ ... }:
{
fileSystems."/home" = {
# Disable checking /home partition with fsck
# Arch has a newer version than Nix, so it errors
noCheck = true;
};
}