mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 22:57:55 +00:00
15 lines
240 B
Nix
15 lines
240 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
|
||
|
];
|
||
|
}
|