12 lines
165 B
Nix
12 lines
165 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.mkShell {
|
|
name = "dev-shell";
|
|
buildInputs = with pkgs; [
|
|
python311
|
|
python311Packages.catppuccin
|
|
sassc
|
|
];
|
|
}
|
|
|