This commit is contained in:
2025-08-28 14:39:48 -06:00
parent 6466379e98
commit c5b32b9acc
42 changed files with 2500 additions and 18 deletions

View File

@@ -0,0 +1,11 @@
# -*- mode: snippet -*-
# name: shell
# key: __shell
# --
{ pkgs ? import <nixpkgs> {}, ... }:
pkgs.mkShell {
packages = with pkgs; [
$1
];
}