1
Fork 0
satellite/hosts/nixos/lapetus/filesystems.nix
2023-07-18 17:49:13 +03:00

8 lines
218 B
Nix

# Mark a bunch of paths as needed for boot
{ lib, ... }:
{
fileSystems = lib.attrsets.genAttrs
[ "/" "/nix" "/persist/data" "/persist/state" "/persist/local/cache" "/boot" ]
(_: { neededForBoot = true; });
}