Files
nixos/raspberry/shell.nix
2024-10-16 20:24:40 +02:00

20 lines
239 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShellNoCC {
packages = with pkgs; [
gnumake
ncurses
pkg-config
flex
bison
openssl
bc
which
file
];
shellHook = ''
export KCONFIG_CONFIG=.config
'';
}