From 226545efa11f1133f6043255eedb72ad06e5eeb7 Mon Sep 17 00:00:00 2001 From: coastalwhite Date: Sat, 6 Apr 2024 16:55:49 +0200 Subject: [PATCH] Add devShell in the nix flake --- flake.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 5397acc..f6cf311 100644 --- a/flake.nix +++ b/flake.nix @@ -45,7 +45,12 @@ ]; cargoLock.lockFile = ./Cargo.lock; - }; - } + }; + devShells.default = pkgs.mkShell { + packages = with pkgs; [ + linux-pam + ]; + }; + } ); } \ No newline at end of file