mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-13 18:18:59 +00:00
10 lines
228 B
Nix
10 lines
228 B
Nix
{ pkgs ?
|
|
import <nixpkgs> { overlays = [ (import ../../../../../overlays).default ]; }
|
|
}:
|
|
|
|
let site = pkgs.callPackage ./package.nix { };
|
|
in pkgs.mkShell {
|
|
inputsFrom = [ site ];
|
|
packages = with pkgs; [ treefmt npins ];
|
|
}
|