diff options
Diffstat (limited to 'templates/standard/default.nix')
| -rw-r--r-- | templates/standard/default.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/standard/default.nix b/templates/standard/default.nix new file mode 100644 index 0000000..b782208 --- /dev/null +++ b/templates/standard/default.nix @@ -0,0 +1,12 @@ +{ + pkgs ? import nixpkgs { + inherit system; + config = { }; + overlays = [ ]; + }, + nixpkgs ? <nixpkgs>, + system ? builtins.currentSystem, +}: +{ + inherit (pkgs) hello; +} |
