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, 17 insertions(+), 13 deletions(-)

changed files
M system/settings/configuration/nix.nixsystem/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; + }; }; - }; }; }