We now properly handle deeply merging attributes, allowing us to export both the home-manager configuration and other packages. This additionally modifies `./pkgs/default.nix` to take a single argument, `pkgs`.
5 lines
191 B
Nix
5 lines
191 B
Nix
{ pkgs, ... }: {
|
|
ipsw = pkgs.callPackage ./ipsw.nix { };
|
|
monaco-powerline = pkgs.callPackage ./monaco-powerline/default.nix { };
|
|
swiftformat = pkgs.callPackage ./swiftformat.nix { };
|
|
}
|