mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-13 12:19:00 +00:00
9 lines
143 B
Nix
9 lines
143 B
Nix
{ pkgs }:
|
|
|
|
let app = pkgs.callPackage ./. { };
|
|
in pkgs.mkShell {
|
|
inputsFrom = [ app ];
|
|
|
|
packages = with pkgs; [ treefmt rust-analyzer ];
|
|
}
|