Files
tuxcord.nix/shells/default.nix
T
ErrorNoInternet 869fc59c6f shells: remove neovim
Some users may be using self-contained Neovim executables.
2026-05-04 00:45:22 -04:00

45 lines
1.0 KiB
Nix

{ inputs, ... }:
{
perSystem =
{ pkgs, ... }:
{
devShells.default = pkgs.mkShell {
name = "configuration.nix";
shellHook = ''
for path in \
/usr/lib/qemu/qemu-bridge-helper \
/run/wrappers/bin/qemu-bridge-helper
do
if [ -x "$path" ]; then
export QEMU_BRIDGE_HELPER_PATH="$path"
break
fi
done
if [ -z "$QEMU_BRIDGE_HELPER_PATH" ]; then
printf "\033[1;33m%s\033[0m\n" \
"WARN: 'qemu-bridge-helper' not found, make sure it is installed and the nix shell hook is looking for it" >&2
fi
'';
packages = with pkgs; [
bat
cachix
deadnix
delta
git
inputs.agenix.packages.${stdenv.hostPlatform.system}.default
jujutsu
nix-output-monitor
nixfmt
npins
parted
smartmontools
statix
tmux
];
};
};
}