diff --git a/.gitignore b/.gitignore index 389bcb5c3e..5659461147 100644 --- a/.gitignore +++ b/.gitignore @@ -75,3 +75,4 @@ data/flatpak/.flatpak-builder # Miscellaneous !docs/dev/Makefile +.direnv diff --git a/shell.nix b/shell.nix index 57aff55578..f7263f66e4 100644 --- a/shell.nix +++ b/shell.nix @@ -1,4 +1,4 @@ -{ pkgs ? import {} }: +{ pkgs ? import { } }: pkgs.mkShell { nativeBuildInputs = with pkgs; [ @@ -7,5 +7,5 @@ pkgs.mkShell { qt5.qttools qt5.qtsvg ]; - buildInputs = [ pkgs.qt5.qtbase ]; + buildInputs = with pkgs; [ qt5.qtbase libsForQt5.kguiaddons ]; }