all repos — nixfiles @ 0741f0290ee5e7082ff421921583ff9ad8ec6f1e

System and user configuration, managed by nix and home-manager

reformat all nix code

Alan Pearce
commit

0741f0290ee5e7082ff421921583ff9ad8ec6f1e

parent

83d9e0536997ccea2dde49e63d0f0f458f56ee61

1 file changed, 14 insertions(+), 6 deletions(-)

changed files
M system/settings/hardware/bare-metal.nixsystem/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" + ]; }