home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit be7b5d3fc4f34f6acad6c5fbd0d96df5ce15d776
parent b47af7a3bcad046d5d22716681f93abf6ca7368b
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Fri, 10 Nov 2023 12:18:45 +0100

flake.nix: add a devshell back

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mflake.nix | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/flake.nix b/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 = {