QOwnNotes/webpage/shell.nix
Patrizio Bekerle 462319586d
lint: format all nix files with nixfmt-rfc-style
Signed-off-by: Patrizio Bekerle <patrizio@bekerle.com>
2025-03-19 22:48:08 +01:00

9 lines
118 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
nodejs_20
zellij
];
}