diff options
| author | seth <[email protected]> | 2024-07-22 03:27:22 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-07-22 03:27:22 -0400 |
| commit | cec5413fcc0ca6b2049efe5a44f3b3fbe6f5f0a1 (patch) | |
| tree | cd34804b4c674a88f1fdbf03a8c4c9a7abe158ef /templates/basic/default.nix | |
| parent | 8160024f34c51057c8c2956113da6a3974d931d6 (diff) | |
templates: modernize
Diffstat (limited to 'templates/basic/default.nix')
| -rw-r--r-- | templates/basic/default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/basic/default.nix b/templates/basic/default.nix new file mode 100644 index 0000000..16b3594 --- /dev/null +++ b/templates/basic/default.nix @@ -0,0 +1,13 @@ +{ + pkgs ? import nixpkgs { + inherit system; + config = { }; + overlays = [ ]; + }, + lib ? pkgs.lib, + nixpkgs ? <nixpkgs>, + system ? builtins.currentSystem, +}: +{ + inherit (pkgs) lib; +} |
