1
0
Fork 0
myflake/shell.nix

9 lines
99 B
Nix
Raw Normal View History

2024-04-12 18:27:02 +02:00
{
pkgs ? import <nixpkgs> {}
}:
pkgs.mkShell {
buildInputs = with pkgs; [
nvfetcher
];
}