15 lines
200 B
Nix
15 lines
200 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
pkgs.mkShell {
|
|
name = "dev-shell";
|
|
buildInputs = with pkgs; [
|
|
python311
|
|
python311Packages.catppuccin
|
|
sassc
|
|
inkscape
|
|
optipng
|
|
ruff
|
|
];
|
|
}
|