From be36f2c7e68ca0a7f555b24316aaa6340769171d Mon Sep 17 00:00:00 2001 From: Soispha Date: Sat, 27 May 2023 16:45:31 +0200 Subject: Chore: Initial Commit --- flake.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 flake.nix (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..dfb50da --- /dev/null +++ b/flake.nix @@ -0,0 +1,17 @@ +# vim: ts=2 +{ + description = "A collection of nix flake templates for diffrent languages"; + + outputs = {self}: { + templates.rust = { + path = ./rust; + description = "A simple Rust/Cargo project"; + welcomeText = ""; + }; + templates.rustToolchain = { + path = ./rust/toolchain.nix; + description = "A simple Rust/Cargo project with a diffrent toolchain"; + welcomeText = ""; + }; + }; +} -- cgit 1.4.1