reformat all nix code
1 file changed, 17 insertions(+), 13 deletions(-)
changed files
M system/settings/configuration/nix.nix → system/settings/configuration/nix.nix
@@ -1,8 +1,10 @@ -{ inputs -, pkgs -, lib -, ... -}: { +{ + inputs, + pkgs, + lib, + ... +}: +{ nix = { package = pkgs.lix; settings = {@@ -30,14 +32,16 @@ options = lib.mkDefault "--delete-older-than 14d"; }; registry = - if pkgs.stdenv.isDarwin - then { - nixpkgs.flake = inputs.nixpkgs; - } else { - nixpkgs.to = { - type = "path"; - path = pkgs.path; + if pkgs.stdenv.isDarwin then + { + nixpkgs.flake = inputs.nixpkgs; + } + else + { + nixpkgs.to = { + type = "path"; + path = pkgs.path; + }; }; - }; }; }