mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
14 lines
155 B
Nix
14 lines
155 B
Nix
|
{ pkgs }:
|
||
|
|
||
|
let
|
||
|
app = pkgs.callPackage ./. { };
|
||
|
in
|
||
|
pkgs.mkShell {
|
||
|
inputsFrom = [ app ];
|
||
|
|
||
|
packages = with pkgs; [
|
||
|
treefmt
|
||
|
rust-analyzer
|
||
|
];
|
||
|
}
|