reformat all nix code
1 file changed, 14 insertions(+), 6 deletions(-)
changed files
M system/settings/hardware/bare-metal.nix → system/settings/hardware/bare-metal.nix
@@ -1,7 +1,9 @@ -{ config -, pkgs -, ... -}: { +{ + config, + pkgs, + ... +}: +{ environment.systemPackages = with pkgs; [ exfat efibootmgr@@ -48,6 +50,12 @@ algorithm = "zstd"; }; boot.tmp.useTmpfs = true; - fileSystems."/".options = [ "noatime" "nodiratime" ]; - fileSystems."/home".options = [ "noatime" "nodiratime" ]; + fileSystems."/".options = [ + "noatime" + "nodiratime" + ]; + fileSystems."/home".options = [ + "noatime" + "nodiratime" + ]; }