default.nix: remove superfluous parentheses

master
Astro 2023-06-26 15:48:18 +02:00
parent 7e09796a9b
commit ec1c08956b
1 changed files with 2 additions and 2 deletions

View File

@ -2,6 +2,6 @@
{
makeWindowsImage = attrs: import ./win.nix ({ inherit pkgs; } // attrs);
layers = (import ./layers { inherit pkgs; });
utils = (import ./utils.nix { inherit pkgs; });
layers = import ./layers { inherit pkgs; };
utils = import ./utils.nix { inherit pkgs; };
}