Commit be7b5d3fc4f3

Vincent Demeester <vincent@sbr.pm>
2023-11-10 12:18:45
flake.nix: add a devshell back
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent b47af7a
Changed files (1)
flake.nix
@@ -135,6 +135,19 @@
       # own repository and flake. If they are useful upstream.
 
       overlays = import ./nix/overlays;
+
+      devShells.x86_64-linux.default =
+        let
+          pkgs = import inputs.nixpkgs {
+            system = "x86_64-linux";
+            config.allowUnfree = true;
+          };
+        in
+        pkgs.mkShell {
+          packages = [ pkgs.alejandra pkgs.git pkgs.nodePackages.prettier ];
+          name = "home";
+          DIRENV_LOG_FORMAT = "";
+        };
     };
 
   inputs = {