diff --git a/justfile b/justfile index 2ad0918..a6c5652 100644 --- a/justfile +++ b/justfile @@ -1,5 +1,2 @@ assets: tup assets - -install-deps: - sudo apt install fuse3 librsvg2-bin tup diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..6342928 --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + just + librsvg + tup + ]; +}