Files
catppuccin-gtk/shell.nix
2024-06-01 19:49:55 +01:00

15 lines
200 B
Nix

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