diff options
| author | Seth Flynn <[email protected]> | 2025-02-02 14:42:48 -0500 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-02-02 14:42:48 -0500 |
| commit | b8ba3056da39e2763094b7c695da0c9d5ee287c5 (patch) | |
| tree | af9fb4dac47a8a1be2af1ff9898e2526b2983845 /templates/standard/shell.nix | |
| parent | 2a05e0b50272f7ec681e33588bc5fc79f72f44af (diff) | |
templates/standard: expand
Diffstat (limited to 'templates/standard/shell.nix')
| -rw-r--r-- | templates/standard/shell.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/standard/shell.nix b/templates/standard/shell.nix new file mode 100644 index 0000000..ded42bb --- /dev/null +++ b/templates/standard/shell.nix @@ -0,0 +1,16 @@ +{ + pkgs ? import nixpkgs { + inherit system; + config = { }; + overlays = [ ]; + }, + nixpkgs ? <nixpkgs>, + system ? builtins.currentSystem, + hello ? (import ./default.nix { inherit pkgs; }).hello, +}: + +pkgs.mkShell { + packages = [ pkgs.bash ]; + + inputsFrom = [ hello ]; +} |
