NixOS-Configuration/filesystems.nix

10 lines
168 B
Nix
Raw Normal View History

2023-08-27 23:14:35 +00:00
{ ... }:
{
fileSystems."/home" = {
# Disable checking /home partition with fsck
# Arch has a newer version than Nix, so it errors
noCheck = true;
};
}